Add tealdeer package and configure zsh manpager

- Add tealdeer to the list of packages in default.nix
- Configure zsh to use nvim as the manpager in zsh.nix
This commit is contained in:
Sam 2024-12-12 15:45:41 +00:00
parent 0933a79508
commit 8c20041ab9
2 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,7 @@
postgresql_16 postgresql_16
libqalculate libqalculate
tmux tmux
tealdeer
; ;
}; };
home.stateVersion = "24.05"; home.stateVersion = "24.05";

View File

@ -103,6 +103,8 @@
echo -ne '\e[5 q' # Use beam shape cursor on startup. echo -ne '\e[5 q' # Use beam shape cursor on startup.
preexec() { echo -ne '\e[5 q' ;} # Use beam shape cursor for each new prompt. preexec() { echo -ne '\e[5 q' ;} # Use beam shape cursor for each new prompt.
export MANPAGER="nvim +Man\!"
''; '';
}; };
} }