diff options
Diffstat (limited to 'tmux.conf')
-rw-r--r-- | tmux.conf | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -2,7 +2,7 @@ # unbind some default keybindings unbind C-b -set-option -sa terminal-features ',screen-256color:RGB' +#set-option -sa terminal-features ',screen-256color:RGB' set-option -g focus-events on # set shell @@ -33,7 +33,7 @@ set -sg escape-time 1 # force tmux to use xterm #set -g default-terminal "xterm-256color" #set -g default-terminal "tmux-256color" -set -g default-terminal "screen-256color" +#set -g default-terminal "screen-256color" # set from advice in neovim :checkhealth #set-option -sa terminal-overrides ',screen-256color:RGB' @@ -100,9 +100,9 @@ bind p paste-buffer #bind -t vi-copy 'y' copy-selection # new copy and paste (needed for st terminal) = https://www.rushiagr.com/blog/2016/06/16/everything-you-need-to-know-about-tmux-copy-pasting-ubuntu/ -bind-key -T copy-mode-vi v send-keys -X begin-selection -bind-key -T copy-mode-vi y send-keys -X copy-selection -bind-key -T copy-mode-vi r send-keys -X rectangle-toggle +# bind-key -T copy-mode-vi v send-keys -X begin-selection +# bind-key -T copy-mode-vi y send-keys -X copy-selection +# bind-key -T copy-mode-vi r send-keys -X rectangle-toggle # also copy to system clipboard #bind -T vi-copy y copy-pipe "xclip -sel clip -i" @@ -111,7 +111,7 @@ bind-key -T copy-mode-vi r send-keys -X rectangle-toggle set -g mouse off # geohot colors -set -g status-position bottom +set -g status-position top set -g status-bg colour234 set -g status-fg colour137 set -g status-style dim @@ -125,7 +125,6 @@ set -g status-left-length 20 ## COLORSCHEME: gruvbox dark (medium) (stolen from github) ## from https://gitlab.com/herrhotzenplotz/unfoofed-dotfiles/-/blob/trunk/homedir/.tmux.conf?ref_type=heads -set-option -g status-position top set-option -g status on set-option -g status-style bg=colour237,fg=colour223 # bg=bg1, fg=fg1 set-window-option -g window-status-style bg=colour214,fg=colour237 # bg=yellow, fg=bg1 |