Files
tawm/modules/home-manager/nvim/default.nix
2024-03-28 16:31:08 +05:30

41 lines
579 B
Nix
Executable File

{pkgs, ...}: {
xdg.configFile."nvim" = {
source = "${pkgs.nvchad}";
};
programs = {
neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
withPython3 = true;
withNodeJs = true;
};
};
home = {
packages = with pkgs; [
gcc
neovide
# nix
nil # Language Server
statix # Lints and suggestions
deadnix # Find and remove unused
alejandra # Code Formatter
# lua
luarocks
# ts
typescript
gdu
ripgrep
];
};
}