This commit is contained in:
LunarAkai 2025-03-14 16:12:32 +01:00
commit e4c1cd0790
3 changed files with 23 additions and 1 deletions

View file

@ -98,6 +98,7 @@
gnome-software
git
neovim
rustup
];
};

View file

@ -29,6 +29,7 @@
./configuration.nix
inputs.home-manager.nixosModules.default
nvf.nixosModules.default
./nvf-configuration.nix
];
};
};

View file

@ -1,5 +1,25 @@
{ pkgs, lib, ... }:
{
vim.languages.nix.enable = true
programs.nvf = {
enable = true;
settings.vim = {
theme = {
enable = true;
name = "catppuccin";
style = "macchiato";
};
statusline.lualine.enable = true;
telescope.enable = true;
languages = {
enableLSP = true;
enableTreesitter = true;
nix.enable = true;
rust.enable = true;
};
};
};
}