diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml index de695aa..4ed86f5 100644 --- a/alacritty/alacritty.yml +++ b/alacritty/alacritty.yml @@ -307,7 +307,7 @@ shell: program: /bin/zsh args: - -c - - tmux -l + - sleep 1 && tmux new -A -s DefaultSession # Key bindings # diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 369552e..4593946 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -1,5 +1,6 @@ # set default terminal set -ga terminal-overrides ",xterm-kitty:Tc,alacritty:Tc" +#set -g default-terminal "tmux-256color" # set mouse/history stuff set -g mouse on set -g history-limit 20000 @@ -30,6 +31,16 @@ set -g status-fg white #### Key Bindings #### ###################### +# Unbind Arrow keys +unbind Up +unbind Down +unbind Left +unbind Right +unbind C-Up +unbind C-Down +unbind C-Left +unbind C-Right + # synchronize all panes in window bind y setw synchronize-panes @@ -39,6 +50,16 @@ bind j select-pane -D bind k select-pane -U bind l select-pane -R +# Resize-panes +bind Right resize-pane -R 10 +bind Left resize-pane -L 10 +bind Up resize-pane -U 10 +bind Down resize-pane -D 10 + +# Move windows options +bind C-h previous-window +bind C-l next-window + # vim-like copy-mode setw -g mode-keys vi unbind [ @@ -52,4 +73,5 @@ bind -Tcopy-mode-vi 'y' send -X copy-pipe-and-cancel "tmux save-buffer - | reatt bind | split-window -h -c "#{pane_current_path}" bind - split-window -v -c "#{pane_current_path}" + set -s escape-time 0