nixos-configs/common/home/neovim/langs/rust.nix

38 lines
753 B
Nix
Raw Normal View History

2024-05-18 19:43:43 -04:00
{
config,
pkgs,
lib,
...
}: let
inherit (lib) mkIf;
2024-05-18 19:43:43 -04:00
inherit (config.vars) neovimIde;
in
mkIf neovimIde {
2024-05-18 19:43:43 -04:00
programs = {
neovim = {
extraPackages = builtins.attrValues {
inherit
(pkgs)
cargo
rustc
rust-analyzer
rustfmt
;
};
2024-05-18 19:43:43 -04:00
extraLuaConfig =
2024-06-09 22:49:30 -04:00
# lua
2024-05-18 19:43:43 -04:00
''
vim.api.nvim_create_autocmd('FileType', {
pattern = { 'rust' },
command = 'setlocal ts=4 sw=4 sts=0 expandtab',
});
require('lspconfig').rust_analyzer.setup({
capabilities = require('cmp_nvim_lsp').default_capabilities(),
});
2024-05-18 19:43:43 -04:00
'';
};
};
}