Files
nixos-config/modules/home/neovim/default.nix
Christoph Schmatzler 0785b817d2 up
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2025-08-18 13:20:18 +00:00

32 lines
546 B
Nix

{
imports = [
./autocmd.nix
./mappings.nix
./options.nix
./plugins/blink-cmp.nix
./plugins/conform.nix
./plugins/grug-far.nix
./plugins/lazygit.nix
./plugins/lsp.nix
./plugins/mini.nix
./plugins/oil.nix
./plugins/treesitter.nix
];
programs.nixvim = {
enable = true;
defaultEditor = true;
luaLoader.enable = true;
colorschemes.catppuccin = {
enable = true;
settings = {
flavour = "latte";
};
};
};
home.shellAliases = {
v = "neovim";
}:
}