mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
18 lines
288 B
Nix
18 lines
288 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; let
|
|
cfg = config.vim.lsp;
|
|
in {
|
|
config = mkIf (cfg.enable && cfg.nvimCodeActionMenu.enable) {
|
|
vim.startPlugins = ["nvim-code-action-menu"];
|
|
|
|
vim.nnoremap = {
|
|
"<silent><leader>ca" = ":CodeActionMenu<CR>";
|
|
};
|
|
};
|
|
}
|