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

9 lines
116 B
Nix
Raw Normal View History

2023-04-13 09:42:27 +00:00
{pkgs, ...}: {
lspconfigPath = with pkgs; [
rust-analyzer
];
lspconfig = {
rust_analyzer = {};
};
}