plugins/neoconf: init

Update maintainers, remove unused pkgs

plugins/neoconf: init

plugins/neoconf: init
This commit is contained in:
bpatel347 2024-11-08 22:49:35 -05:00 committed by nix-infra-bot
parent f8b3f16556
commit f2259372fb
2 changed files with 159 additions and 0 deletions

View 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;
};
};
};
};
};
}