Compare commits

...

3 commits

2 changed files with 9 additions and 0 deletions

View file

@ -40,6 +40,12 @@ in
}; };
interactiveShellInit = interactiveShellInit =
# Launch tmux
''
if not set -q TMUX
tmux attach-session -t $(hostname -s) || tmux new-session -s $(hostname -s)
end
'' +
# Open command buffer in vim when alt+e is pressed # Open command buffer in vim when alt+e is pressed
'' ''
bind \ee edit_command_buffer bind \ee edit_command_buffer

View file

@ -34,6 +34,9 @@
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
# display up to 20 chars of session name
set-option -g status-left-length 20
# default statusbar colors # default statusbar colors
set-option -g status-style fg=yellow,bg=black set-option -g status-style fg=yellow,bg=black