tmux qol dir

This commit is contained in:
Kulvir Singh
2025-02-01 23:49:03 +05:30
parent 6e78dd71bf
commit 996217b767
5 changed files with 27 additions and 22 deletions

View File

@@ -2,6 +2,13 @@
programs = {
zsh = {
enable = true;
envExtra = ''
eval "$(/opt/homebrew/bin/brew shellenv)"
export PATH="/opt/homebrew/bin:$PATH"
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
'';
shellAliases = {
ls = "lsd";
lg = "lazygit";

View File

@@ -17,21 +17,21 @@
}
];
extraConfig = "
set-option -sa terminal-overrides \",xterm*:Tc\"
extraConfig = ''
set-option -sa terminal-overrides ",xterm*:Tc"
set -s escape-time 0
# split panes using | and -
unbind '\"'
unbind '"'
unbind %
bind _ split-window -h
bind - split-window -v
bind - split-window -v -c "#{pane_current_path}"
bind _ split-window -h -c "#{pane_current_path}"
bind -r k select-pane -U
bind -r j select-pane -D
bind -r h select-pane -L
bind -r l select-pane -R
";
'';
};
}