From 747462f7e25acae6957402fc34af084700faf4d5 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Tue, 22 Feb 2022 14:45:37 +0100 Subject: Changed terminal stuff to use nord theme instead of gruvbox --- config/tmux/tmux.conf | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'config/tmux') diff --git a/config/tmux/tmux.conf b/config/tmux/tmux.conf index c514718..fa4c03a 100644 --- a/config/tmux/tmux.conf +++ b/config/tmux/tmux.conf @@ -2,7 +2,11 @@ unbind C-b set -g prefix C-a bind C-a send-prefix -set -g default-terminal "xterm-256color" +# set -g default-terminal "xterm-256color" +set-option -g default-terminal "screen-256color" +set-option -sa terminal-overrides ',xterm-256color:RGB' + +set-option -g focus-events on set -g mouse on setw -g mode-keys vi @@ -13,11 +17,13 @@ bind '"' split-window -c "#{pane_current_path}" bind '%' split-window -c "#{pane_current_path}" -h bind 'c' new-window -c "#{pane_current_path}" - set -g @plugin 'tmux-plugins/tpm' -set -g @plugin 'egel/tmux-gruvbox' -set -g @tmux-gruvbox 'dark' +# set -g @plugin 'egel/tmux-gruvbox' +# set -g @tmux-gruvbox 'dark' + +set -g @plugin 'arcticicestudio/nord-tmux' + # set -g @plugin 'tomhey/tmux-remote-sessions' run "$XDG_CONFIG_HOME/tmux/plugins/tpm/tpm" -- cgit