Change zsh screen settings, fix delzip, change theme

This commit is contained in:
Fabian Ising
2020-10-14 11:06:07 +02:00
parent 763c97709a
commit fcade9a042

View File

@@ -1,5 +1,5 @@
set-environment -g PATH "/usr/local/bin:/bin:/usr/bin" 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 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-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" 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 # Copying
# move x clipboard into tmux paste buffer # move x clipboard into tmux paste buffer
bind C-p run "tmux set-buffer \"$(xclip -o)\"; 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-open'
set -g @plugin 'tmux-plugins/tmux-yank' set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'jimeh/tmux-themepack' set -g @plugin 'jimeh/tmux-themepack'
set -g @themepack 'powerline/double/red' set -g @themepack 'powerline/double/blue'
# Other examples: # Other examples:
# set -g @plugin 'github_username/plugin_name' # set -g @plugin 'github_username/plugin_name'