Pimp latex export

This commit is contained in:
Marco Thomas
2022-03-11 15:58:47 +01:00
parent fc508e48ee
commit 25a03bc77f
4 changed files with 44 additions and 10 deletions

View File

@@ -6,9 +6,9 @@ set -g default-terminal "tmux-256color"
# enable true color terminal
set -ga terminal-overrides ",*256col*:Tc"
# new panes
bind-key -n M-v split-window -h
bind-key -n M-s split-window -v
# new panes (open with current path)
bind-key -n M-v split-window -h -c "#{pane_current_path}"
bind-key -n M-s split-window -v -c "#{pane_current_path}"
# pane selection
bind-key -n M-h select-pane -L
@@ -16,11 +16,12 @@ bind-key -n M-j select-pane -D
bind-key -n M-k select-pane -U
bind-key -n M-l select-pane -R
# pane modifications
# pane / window modifications
bind-key -n M-z resize-pane -Z
bind-key -n M-, command-prompt "rename-window '%%'"
# new windows
bind-key -n M-c new-window
bind-key -n M-c new-window -c "#{pane_current_path}"
# navigate windows
bind-key -n M-1 select-window -t 1