feat(nvim): setup json/yaml lsp
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-05-16 22:49:46 -04:00
parent 8f08976322
commit 8b561153bc
2 changed files with 51 additions and 0 deletions

View file

@ -12,6 +12,7 @@ in {
./clang.nix
./hyprlang.nix
./java.nix
./json.nix
./lua.nix
./markdown.nix
./nix.nix

View file

@ -0,0 +1,50 @@
{
config,
lib,
pkgs,
...
}: let
inherit (config.vars) neovimIde;
in
lib.mkIf neovimIde {
programs = {
neovim = {
extraPackages = [
pkgs.vscode-langservers-extracted
pkgs.yaml-language-server
];
extraLuaConfig =
/*
lua
*/
''
vim.api.nvim_create_autocmd('FileType', {
pattern = 'yaml',
command = 'setlocal ts=4 sw=4 sts=0 expandtab',
});
vim.api.nvim_create_autocmd('FileType', {
pattern = 'json',
command = 'setlocal ts=4 sw=4 sts=0 expandtab',
});
local lsp = require('lspconfig');
local coq = require('coq');
lsp.jsonls.setup(coq.lsp_ensure_capabilities({}));
lsp.yamlls.setup(coq.lsp_ensure_capabilities({
settings = {
yaml = {
schemas = {
[
"https://json.schemastore.org/github-workflow.json"
] = "/.github/workflows/*",
},
},
},
}));
'';
};
};
}