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

65 lines
1.7 KiB
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkIf;
cfg = config.programs.neovim;
2024-05-11 19:45:04 -04:00
flakeEnv = config.programs.bash.sessionVariables.FLAKE;
in {
config = mkIf cfg.enable {
programs = {
neovim = {
plugins = [
2024-05-11 19:45:04 -04:00
{
plugin = pkgs.vimPlugins.neodev-nvim;
2024-05-11 19:45:04 -04:00
type = "lua";
config =
2024-06-09 22:49:30 -04:00
# lua
2024-05-11 19:45:04 -04:00
''
2024-12-16 17:44:17 -05:00
local default_capabilities = require('cmp_nvim_lsp').default_capabilities();
2024-05-16 11:24:22 -04:00
vim.api.nvim_create_autocmd('FileType', {
pattern = 'lua',
2024-12-22 03:12:45 -05:00
callback = function()
vim.cmd[[setlocal ts=4 sw=4 sts=0 expandtab]];
if (devShells['lua'] == nil) then
devShells['lua'] = 1;
2024-12-22 12:53:27 -05:00
require('nix-develop').nix_develop({'${flakeEnv}#lua'}, 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 11:24:22 -04:00
});
2024-05-11 19:45:04 -04:00
-- IMPORTANT: make sure to setup neodev BEFORE lspconfig
require("neodev").setup({
override = function(root_dir, library)
if root_dir:find('${flakeEnv}', 1, true) == 1 then
library.enabled = true;
library.plugins = true;
2024-05-11 19:45:04 -04:00
end
end,
});
require('lspconfig').lua_ls.setup({
2024-12-16 17:44:17 -05:00
capabilities = default_capabilities,
2024-12-22 03:12:45 -05:00
autostart = false,
});
2024-05-11 19:45:04 -04:00
'';
}
];
};
};
};
# For accurate stack trace
_file = ./default.nix;
}