From fcade9a042316fd13a050c913c956dc18895b5c2 Mon Sep 17 00:00:00 2001 From: Fabian Ising Date: Wed, 14 Oct 2020 11:06:07 +0200 Subject: [PATCH] Change zsh screen settings, fix delzip, change theme --- tmux/.tmux.conf | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 7dd9453..813e08d 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -1,5 +1,5 @@ set-environment -g PATH "/usr/local/bin:/bin:/usr/bin" -set -g default-terminal "screen-256color" +set -g default-terminal "xterm-256color" set -g history-limit 999999999 @@ -52,6 +52,10 @@ bind -n C-j if-shell "$is_vim" "send-keys C-j" "select-pane -D" bind -n C-k if-shell "$is_vim" "send-keys C-k" "select-pane -U" bind -n C-l if-shell "$is_vim" "send-keys C-l" "select-pane -R" +# Nano +bind-key C-x send-keys C-x +bind-key C-o send-keys C-o + # Copying # move x clipboard into tmux paste buffer bind C-p run "tmux set-buffer \"$(xclip -o)\"; tmux paste-buffer" @@ -74,7 +78,7 @@ set -g @plugin 'tmux-plugins/tmux-sidebar' set -g @plugin 'tmux-plugins/tmux-open' set -g @plugin 'tmux-plugins/tmux-yank' set -g @plugin 'jimeh/tmux-themepack' -set -g @themepack 'powerline/double/red' +set -g @themepack 'powerline/double/blue' # Other examples: # set -g @plugin 'github_username/plugin_name'