nixos-configs/homeManagerModules/neovim/langs/json/default.nix

63 lines
1.6 KiB
Nix
Raw Permalink Normal View History

2024-05-16 22:49:46 -04:00
{
config,
lib,
...
}: let
inherit (lib) mkIf;
cfg = config.programs.neovim;
2024-12-22 03:12:45 -05:00
flakeEnv = config.programs.bash.sessionVariables.FLAKE;
in {
config = mkIf cfg.enable {
2024-05-16 22:49:46 -04:00
programs = {
neovim = {
extraLuaConfig =
2024-06-09 22:49:30 -04:00
# lua
2024-05-16 22:49:46 -04:00
''
vim.api.nvim_create_autocmd('FileType', {
2024-12-22 03:12:45 -05:00
pattern = { 'json', 'yaml' },
2024-12-22 03:12:45 -05:00
callback = function()
vim.cmd[[setlocal ts=4 sw=4 sts=0 expandtab]];
if (devShells['json'] == nil) then
devShells['json'] = 1;
2024-12-22 12:53:27 -05:00
require('nix-develop').nix_develop({'${flakeEnv}#json'}, function()
2024-12-22 12:42:29 -05:00
vim.cmd[[LspStart]];
2024-12-22 12:53:27 -05:00
end);
2024-12-22 03:12:45 -05:00
end
end,
2024-05-16 22:49:46 -04:00
});
local lsp = require('lspconfig');
2024-12-16 17:44:17 -05:00
local default_capabilities = require('cmp_nvim_lsp').default_capabilities();
2024-05-16 22:49:46 -04:00
lsp.jsonls.setup({
2024-12-16 17:44:17 -05:00
capabilities = default_capabilities,
2024-12-22 03:12:45 -05:00
autostart = false,
});
lsp.yamlls.setup({
2024-12-16 17:44:17 -05:00
capabilities = default_capabilities,
2024-12-22 03:12:45 -05:00
autostart = false,
2024-05-16 22:49:46 -04:00
settings = {
yaml = {
schemas = {
[
"https://json.schemastore.org/github-workflow.json"
] = "/.github/workflows/*",
},
},
},
});
2024-05-16 22:49:46 -04:00
'';
};
};
};
# For accurate stack trace
_file = ./default.nix;
}