nixos-config/config/programs/vim/modules/lsp/rust-analyzer.nix

8 lines
116 B
Nix

{pkgs, ...}: {
lspconfigPath = with pkgs; [
rust-analyzer
];
lspconfig = {
rust_analyzer = {};
};
}