mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-10 12:21:40 +00:00
feat: provide configuration options for nvim-code-action-menu
This commit is contained in:
parent
27f95e4dcb
commit
7b89a3ad25
3 changed files with 17 additions and 0 deletions
|
@ -4,6 +4,12 @@ with lib; {
|
|||
nvimCodeActionMenu = {
|
||||
enable = mkEnableOption "Enable nvim code action menu";
|
||||
|
||||
show = {
|
||||
details = mkEnableOption "Show details" // {default = true;};
|
||||
diff = mkEnableOption "Show diff" // {default = true;};
|
||||
actionKind = mkEnableOption "Show action kind" // {default = true;};
|
||||
};
|
||||
|
||||
mappings = {
|
||||
open = mkMappingOption "Open code action menu [nvim-code-action-menu]" "<leader>ca";
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue