1
0
Fork 0
mirror of https://github.com/NotAShelf/neovim-flake.git synced 2024-12-27 20:59:47 +01:00
neovim-flake/modules/lsp/nvim-code-action-menu/nvim-code-action-menu.nix

14 lines
180 B
Nix
Raw Normal View History

{
config,
lib,
...
}:
with lib;
2023-03-31 04:20:35 +02:00
with builtins; {
options.vim.lsp = {
nvimCodeActionMenu = {
enable = mkEnableOption "Enable nvim code action menu";
};
};
}