mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 11:31:15 +00:00
b499151527
* ui: allow custom listOf str border type * lib: extract shared borderType * remove TODO * allow ["|" "HighlightGroup"] for border char * docs: update rl notes --------- Co-authored-by: raf <raf@notashelf.dev>
39 lines
1.4 KiB
Nix
39 lines
1.4 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
|
inherit (lib.nvim.binds) mkSetBinding addDescriptionsToMappings pushDownDefault;
|
|
inherit (lib.nvim.lua) toLuaObject;
|
|
|
|
cfg = config.vim.lsp;
|
|
|
|
self = import ./nvim-code-action-menu.nix {inherit lib;};
|
|
mappingDefinitions = self.options.vim.lsp.nvimCodeActionMenu.mappings;
|
|
mappings = addDescriptionsToMappings cfg.nvimCodeActionMenu.mappings mappingDefinitions;
|
|
in {
|
|
config = mkIf (cfg.enable && cfg.nvimCodeActionMenu.enable) {
|
|
vim = {
|
|
startPlugins = ["nvim-code-action-menu"];
|
|
|
|
maps.normal = mkSetBinding mappings.open ":CodeActionMenu<CR>";
|
|
|
|
binds.whichKey.register = pushDownDefault {
|
|
"<leader>c" = "+CodeAction";
|
|
};
|
|
|
|
pluginRC.code-action-menu = entryAnywhere ''
|
|
-- border configuration
|
|
vim.g.code_action_menu_window_border = ${toLuaObject config.vim.ui.borders.plugins.code-action-menu.style}
|
|
|
|
-- show individual sections of the code action menu
|
|
${lib.optionalString cfg.nvimCodeActionMenu.show.details "vim.g.code_action_menu_show_details = true"}
|
|
${lib.optionalString cfg.nvimCodeActionMenu.show.diff "vim.g.code_action_menu_show_diff = true"}
|
|
${lib.optionalString cfg.nvimCodeActionMenu.show.actionKind "vim.g.code_action_menu_show_action_kind = true"}
|
|
'';
|
|
};
|
|
};
|
|
}
|