feat(nvim): setup json/yaml lsp
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
8f08976322
commit
8b561153bc
2 changed files with 51 additions and 0 deletions
|
@ -12,6 +12,7 @@ in {
|
||||||
./clang.nix
|
./clang.nix
|
||||||
./hyprlang.nix
|
./hyprlang.nix
|
||||||
./java.nix
|
./java.nix
|
||||||
|
./json.nix
|
||||||
./lua.nix
|
./lua.nix
|
||||||
./markdown.nix
|
./markdown.nix
|
||||||
./nix.nix
|
./nix.nix
|
||||||
|
|
50
common/home/neovim/langs/json.nix
Normal file
50
common/home/neovim/langs/json.nix
Normal 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/*",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}));
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue