mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-22 17:32:19 +00:00
tmux PWD behaviors
- new panes open in the current working directory - new windows open in the homedir
This commit is contained in:
parent
4056222f3b
commit
c471f6b14f
1 changed files with 5 additions and 1 deletions
|
@ -9,6 +9,10 @@
|
||||||
mouse = true;
|
mouse = true;
|
||||||
plugins = with pkgs.tmuxPlugins; [ ];
|
plugins = with pkgs.tmuxPlugins; [ ];
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
|
# new panes inherit current working directory
|
||||||
|
bind '%' split-window -h -c '#{pane_current_path}'
|
||||||
|
bind '"' split-window -v -c '#{pane_current_path}'
|
||||||
|
|
||||||
# navigating panes with Ctrl+{hjkl}
|
# navigating panes with Ctrl+{hjkl}
|
||||||
bind -n C-h select-pane -L
|
bind -n C-h select-pane -L
|
||||||
bind -n C-j select-pane -D
|
bind -n C-j select-pane -D
|
||||||
|
@ -26,7 +30,7 @@
|
||||||
unbind n
|
unbind n
|
||||||
unbind w
|
unbind w
|
||||||
bind n command-prompt "rename-window '%%'"
|
bind n command-prompt "rename-window '%%'"
|
||||||
bind w new-window -c "#{pane_current_path}"
|
bind w new-window
|
||||||
bind -n M-j previous-window # alt+j
|
bind -n M-j previous-window # alt+j
|
||||||
bind -n M-k next-window # alt+k
|
bind -n M-k next-window # alt+k
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue