32 lines
564 B
Nix
32 lines
564 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; [
|
|
fd
|
|
ripgrep
|
|
tree-sitter
|
|
|
|
gcc
|
|
|
|
lua-language-server
|
|
nixd
|
|
vscode-langservers-extracted
|
|
nodePackages.bash-language-server
|
|
|
|
stylua
|
|
];
|
|
};
|
|
}
|