This commit is contained in:
Till 2024-12-26 16:07:44 +01:00
parent 5fabec3fa3
commit 4fb0d3aa6c
17 changed files with 75 additions and 34 deletions

View file

@ -1,7 +1,6 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [ nnn ];
programs.tmux = {
enable = true;
escapeTime = 0;
@ -27,7 +26,7 @@
bind C-c command-prompt -I "#{b:pane_current_path}" "rename-window '%%'"
# Layouts
bind f source-file ~/.config/tmux/nnn.conf
bind f source-file ~/.config/tmux/vifm.conf
bind R source-file ~/.config/tmux/rloft.conf
bind J source-file ~/.config/tmux/jekyll.conf
@ -50,7 +49,7 @@
set-option -g focus-events on
'';
};
xdg.configFile."tmux/nnn.conf".source = ./nnn.conf;
xdg.configFile."tmux/vifm.conf".source = ./vifm.conf;
xdg.configFile."tmux/rloft.conf".source = ./rloft.conf;
xdg.configFile."tmux/jekyll.conf".source = ./jekyll.conf;
}