Files
nixos-config/modules/home-manager/nvim/default.nix
2024-03-01 20:44:11 +05:30

39 lines
618 B
Nix
Executable File

{ inputs, pkgs, ... }: {
# fix nvchad
# xdg.configFile."nvim" = {
# source = "${pkgs.nvchad}";
# };
programs = {
neovim = {
enable = true;
defaultEditor = true;
viAlias = false;
vimAlias = true;
withPython3 = true;
withNodeJs = true;
};
};
home = {
packages = with pkgs; [
gcc
neovide
# nix
statix # Lints and suggestions for the nix programming language
deadnix # Find and remove unused code in .nix source files
alejandra # Nix Code Formatter
# lua
luarocks
gdu
ripgrep
];
};
}