nixos-configs/homeManagerModules/neovim/langs/lua/default.nix
matt1432 346077c0e0
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(nvim): move packages out of config to devShells
2024-12-22 00:04:13 -05:00

52 lines
1.3 KiB
Nix

{
config,
lib,
pkgs,
...
}: let
inherit (lib) mkIf;
cfg = config.programs.neovim;
flakeEnv = config.programs.bash.sessionVariables.FLAKE;
in {
config = mkIf cfg.enable {
programs = {
neovim = {
plugins = [
{
plugin = pkgs.vimPlugins.neodev-nvim;
type = "lua";
config =
# lua
''
local default_capabilities = require('cmp_nvim_lsp').default_capabilities();
vim.api.nvim_create_autocmd('FileType', {
pattern = 'lua',
command = 'setlocal ts=4 sw=4 sts=0 expandtab',
});
-- 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;
end
end,
});
require('lspconfig').lua_ls.setup({
capabilities = default_capabilities,
});
'';
}
];
};
};
};
# For accurate stack trace
_file = ./default.nix;
}