mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-14 19:24:34 +02:00
nvim-lsp: create nvim LSP plugin
This commit is contained in:
parent
9c13cb407b
commit
ba79ba0652
7 changed files with 134 additions and 4 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue