Common/neovim: install catppuccin theme

This commit is contained in:
Toast 2024-01-29 11:08:31 +01:00
parent fd8053ed65
commit 502074653c

View file

@ -1,9 +1,12 @@
{ ... }: { pkgs, ... }:
{ {
home-manager.users.toast = { home-manager.users.toast = {
programs.neovim = { programs.neovim = {
enable = true; enable = true;
plugins = with pkgs.vimPlugins; [
catppuccin-nvim
];
}; };
}; };
} }