feat: some neovim customizaion

This commit is contained in:
dprin 2026-03-28 18:26:22 +01:00
parent e2fab632ef
commit 39643701c8
10 changed files with 263 additions and 66 deletions

View file

@ -1,10 +1,13 @@
{...}:
{
home-manager.users.perver = {
programs.tmux = {
enable = true;
newSession = true;
shell = "fish";
};
};
{pkgs, ...}: {
home-manager.users.prever = {
programs.tmux = {
enable = true;
newSession = true;
shell = "${pkgs.fish}/bin/fish";
plugins = with pkgs.tmuxPlugins; [
gruvbox
];
};
};
}