nixos-configs/homeManagerModules/neovim/langs/json/default.nix
matt1432 4044403520
All checks were successful
Discord / discord commits (push) Has been skipped
fix(nvim): clean up nix-develop fork
2024-12-22 12:53:27 -05:00

62 lines
1.6 KiB
Nix

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