configuration.nix/home/programs/neovim.nix
2024-06-09 18:48:27 +05:30

31 lines
508 B
Nix

{ pkgs, ... }: {
xdg = {
desktopEntries = {
"nvim".name = "Neovim wrapper";
"nvim".exec = "nvim %F";
"nvim".noDisplay = true;
};
};
programs.neovim = {
enable = true;
withNodeJs = true;
withPython3 = true;
withRuby = true;
viAlias = true;
vimAlias = true;
defaultEditor = true;
extraPackages = with pkgs; [
clang
go
cargo
rustc
tree-sitter
stylua
fd
ripgrep
unzip
wget
];
};
}