2024-05-18 19:43:43 -04:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: let
|
2024-12-22 03:12:45 -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-18 19:43:43 -04:00
|
|
|
programs = {
|
|
|
|
neovim = {
|
|
|
|
extraLuaConfig =
|
2024-06-09 22:49:30 -04:00
|
|
|
# lua
|
2024-05-18 19:43:43 -04:00
|
|
|
''
|
|
|
|
vim.api.nvim_create_autocmd('FileType', {
|
2024-12-22 03:12:45 -05:00
|
|
|
pattern = { 'rust' },
|
|
|
|
|
|
|
|
callback = function()
|
|
|
|
vim.cmd[[setlocal ts=4 sw=4 sts=0 expandtab]];
|
|
|
|
|
|
|
|
if (devShells['rust'] == nil) then
|
|
|
|
devShells['rust'] = 1;
|
|
|
|
|
|
|
|
require('nix-develop').nix_develop({'${flakeEnv}#rust'});
|
|
|
|
vim.cmd[[LspStart]];
|
|
|
|
end
|
|
|
|
end,
|
2024-05-18 19:43:43 -04:00
|
|
|
});
|
|
|
|
|
2024-07-28 02:54:34 -04:00
|
|
|
require('lspconfig').rust_analyzer.setup({
|
|
|
|
capabilities = require('cmp_nvim_lsp').default_capabilities(),
|
2024-12-22 03:12:45 -05:00
|
|
|
autostart = false,
|
2024-07-28 02:54:34 -04:00
|
|
|
});
|
2024-05-18 19:43:43 -04:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
2024-12-21 23:34:10 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
# For accurate stack trace
|
|
|
|
_file = ./default.nix;
|
|
|
|
}
|