From 7a6a04633c2a2b04c5ce7af771d40a5bcb7a465c Mon Sep 17 00:00:00 2001 From: Hunter Haugen Date: Fri, 23 Aug 2019 15:34:14 -0700 Subject: [PATCH] Add nord to tmux --- .tmux.conf | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/.tmux.conf b/.tmux.conf index 778889d..f530388 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -1,3 +1,8 @@ +### List of plugins +set -g @plugin "tmux-plugins/tpm" +set -g @plugin "tmux-plugins/tmux-sensible" +set -g @plugin "tmux-plugins/tmux-prefix-highlight" #yuno work? +set -g @plugin "arcticicestudio/nord-tmux" ### screen-like keybindings unbind C-b @@ -98,13 +103,14 @@ setenv -g SSH_AUTH_SOCK "$HOME/.gnupg/$.gpg-agent.ssh" ### Colors +#set -g status-right '#{prefix_highlight} | %a %Y-%m-%d %H:%M' #set -ga terminal-overrides ",screen-256color-bce:Tc" -set -g default-terminal "screen-256color-bce" -set -g status-bg "#4e4e4e" -set -g status-fg "#ffffff" -set -g window-status-format "#I:#W#F" -set -g window-status-current-format " #I:#W#F " -set-window-option -g window-status-current-style 'fg=#000000,bg=#CAFE66' +#set -g default-terminal "screen-256color-bce" +#set -g status-bg "#4e4e4e" +#set -g status-fg "#ffffff" +#set -g window-status-format "#I:#W#F" +#set -g window-status-current-format " #I:#W#F " +#set-window-option -g window-status-current-style 'fg=#000000,bg=#CAFE66' #set -g status-bg black #set -g status-fg white #setw -g window-status-current-bg black @@ -113,7 +119,7 @@ set-window-option -g window-status-current-style 'fg=#000000,bg=#CAFE66' ### Status bar -set-option -g allow-rename off +#set-option -g allow-rename off #set -g status-right "#[fg=magenta] @#H #[fg=cyan]%Y-%m-%d #[fg=yellow]%a #[fg=green]%H:%M #[fg=blue]#(uptime|awk '{split(substr($0, index($0, "load")), a, ":"); print a[2]}')#[default]" #set -g status off #set -g status-utf8 on @@ -136,4 +142,7 @@ set-option -g allow-rename off # set -g status-right "#[fg=green]][#[fg=white] #T #[fg=green]][ #[fg=blue]%Y-%m-%d #[fg=white]%H:%M#[default]" #set -g status-right "#[fg=green]][ #[fg=blue]%Y-%m-%d #[fg=white]%H:%M#[default]" +# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) +run -b '~/.tmux/plugins/tpm/tpm' + # vim:ft=tmux