Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .luarc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"diagnostics.globals": [
"vim"
]
}
"diagnostics.globals": ["vim"]
}

24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,13 @@ Among La Italia's finest painters, Raphael stood out for his harmony in color

- **Configurable Icons**: All icons used in the picker (bookmarks, group arrows, history markers, etc.) are configurable via `opts.icons` (see below).

- **Configuration Management**: Export, import, validate, and manage your configurations with presets:
- Export your current configuration to a file with `:RaphaelConfigExport`
- Import configurations from files with `:RaphaelConfigImport`
- Validate your configuration with `:RaphaelConfigValidate`
- Use predefined presets like "minimal", "full-featured", or "presentation" with `:RaphaelConfigPreset`
- List available config files with `:RaphaelConfigList`

---

## Installation
Expand Down Expand Up @@ -368,6 +375,23 @@ return {
- `:RaphaelProfile work` / `night` / `presentation` → switch to that profile.
- `:RaphaelProfile base` → clear profile (use base config only).

- `:RaphaelConfigExport [file_path]`
Export current configuration to a JSON file (defaults to `~/.config/nvim/raphael/configs/exported_config.json`).

- `:RaphaelConfigImport file_path`
Import and apply configuration from a JSON file.

- `:RaphaelConfigValidate`
Validate current configuration and show diagnostics.

- `:RaphaelConfigList`
List available configuration files in the raphael configs directory.

- `:RaphaelConfigPreset [preset_name]`
Apply a configuration preset:
- `:RaphaelConfigPreset` → list all available presets.
- `:RaphaelConfigPreset minimal` / `full-featured` / `presentation` → apply that preset.

---

## Picker internals (module paths)
Expand Down
Loading
Loading