mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 14:56:00 +01:00
13 lines
324 B
Nix
13 lines
324 B
Nix
{lib, ...}: let
|
|
inherit (lib.options) mkEnableOption;
|
|
inherit (lib.nvim.binds) mkMappingOption;
|
|
in {
|
|
options.vim.lsp = {
|
|
otter = {
|
|
enable = mkEnableOption "Otter LSP Injector";
|
|
mappings = {
|
|
toggle = mkMappingOption "Activate LSP on Cursor Position [otter]" "<leader>oa";
|
|
};
|
|
};
|
|
};
|
|
}
|