2024-05-16 22:49:46 -04:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: let
|
2024-12-22 00:04:13 -05:00
|
|
|
inherit (lib) mkIf;
|
2024-11-22 02:48:41 -05:00
|
|
|
|
|
|
|
cfg = config.programs.neovim;
|
2024-12-22 03:12:45 -05:00
|
|
|
flakeEnv = config.programs.bash.sessionVariables.FLAKE;
|
2024-12-21 23:34:10 -05:00
|
|
|
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-21 23:34:10 -05:00
|
|
|
|
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
|
|
|
|
2024-07-28 02:54:34 -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,
|
2024-07-28 02:54:34 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
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-07-28 02:54:34 -04:00
|
|
|
});
|
2024-05-16 22:49:46 -04:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
2024-12-21 23:34:10 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
# For accurate stack trace
|
|
|
|
_file = ./default.nix;
|
|
|
|
}
|