nvim-lsp: create nvim LSP plugin

This commit is contained in:
Pedro Alves 2021-02-01 15:54:53 +00:00
parent 9c13cb407b
commit ba79ba0652
7 changed files with 134 additions and 4 deletions

View file

@ -87,7 +87,7 @@ in
extraPlugins = mkOption {
type = with types; listOf (either package pluginWithConfigType);
default = [];
default = [ ];
description = "List of vim plugins to install.";
};
@ -110,7 +110,7 @@ in
extraPackages = mkOption {
type = types.listOf types.package;
default = [];
default = [ ];
example = "[ pkgs.shfmt ]";
description = "Extra packages to be made available to neovim";
};
@ -128,7 +128,7 @@ in
globals = mkOption {
type = types.attrsOf types.anything;
default = {};
default = { };
description = "Global variables";
};
@ -149,7 +149,7 @@ in
command = mapOptions "command-line";
};
};
default = {};
default = { };
description = ''
Custom keybindings for any mode.