mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-28 03:20:08 +02:00
plugins/neoconf: init
Update maintainers, remove unused pkgs plugins/neoconf: init plugins/neoconf: init
This commit is contained in:
parent
f8b3f16556
commit
f2259372fb
2 changed files with 159 additions and 0 deletions
67
tests/test-sources/plugins/by-name/neoconf/default.nix
Normal file
67
tests/test-sources/plugins/by-name/neoconf/default.nix
Normal file
|
@ -0,0 +1,67 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.neoconf.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.neoconf = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
local_settings = ".neoconf.json";
|
||||
global_settings = "neoconf.json";
|
||||
import = {
|
||||
vscode = true;
|
||||
coc = true;
|
||||
lsp = true;
|
||||
};
|
||||
live_reload = true;
|
||||
filetype_jsonc = true;
|
||||
plugins = {
|
||||
lspconfig = {
|
||||
enabled = true;
|
||||
};
|
||||
jsonls = {
|
||||
enabled = true;
|
||||
configured_servers_only = true;
|
||||
};
|
||||
lua_ls = {
|
||||
enabled_for_neovim_config = true;
|
||||
enabled = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
example = {
|
||||
plugins.neoconf = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
local_settings = ".neoconf.example.json";
|
||||
global_settings = "neoconf-example.json";
|
||||
import = {
|
||||
vscode = false;
|
||||
coc = true;
|
||||
lsp = false;
|
||||
};
|
||||
live_reload = false;
|
||||
filetype_jsonc = false;
|
||||
plugins = {
|
||||
lspconfig = {
|
||||
enabled = false;
|
||||
};
|
||||
jsonls = {
|
||||
enabled = true;
|
||||
configured_servers_only = false;
|
||||
};
|
||||
lua_ls = {
|
||||
enabled_for_neovim_config = false;
|
||||
enabled = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue