From 33af58e9943727672b1cb7ee3d4ff715f8cf04a4 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Tue, 2 Feb 2021 16:02:56 +0000 Subject: [PATCH] Finished Tmux setup --- .install.conf.yaml | 1 + tmux/tmux.conf | 63 ++++++++++++++++++++++++---------------------- 2 files changed, 34 insertions(+), 30 deletions(-) diff --git a/.install.conf.yaml b/.install.conf.yaml index b9204f9..f52d167 100644 --- a/.install.conf.yaml +++ b/.install.conf.yaml @@ -13,6 +13,7 @@ # Tmux ~/.tmux.conf: tmux/tmux.conf + ~/.tmux/plugins/tpm: tmux/tpm # bash ~/.bash: diff --git a/tmux/tmux.conf b/tmux/tmux.conf index fc892a5..5c846c3 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -1,30 +1,33 @@ - -# Import Tmux plugins using TMP -set -g @plugin 'tmux-plugins/tpm' -set -g @plugin 'tmux-plugins/tmux-sensible' -set -g @plugin 'tmux-plugins/tmux-resurrect' -set -g @plugin 'tmux-plugins/tmux-continuum' -set -g @plugin 'tmux-plugins/tmux-yank' -set -g @plugin 'tmux-plugins/tmux-prefix-highlight' -set -g @plugin 'tmux-plugins/tmux-online-status' -set -g @plugin 'tmux-plugins/tmux-open' -set -g @plugin 'thewtex/tmux-mem-cpu-load' -set -g @plugin 'tmux-plugins/tmux-open' - -# Automatically restore session -set -g @continuum-restore 'on' - -# Configure Tmux-prefix-highlight -set -g status-right '#{prefix_highlight} | %a %Y-%m-%d %H:%M' - -# Show current internet status -set -g status-right "Online: #{online_status} | %a %h-%d %H:%M " - -# Show system resource usage -set -g status-right "#[fg=green]#($TMUX_PLUGIN_MANAGER_PATH/tmux-mem-cpu-load/tmux-mem-cpu-load --colors --powerline-right --interval 2)#[default]" - -# Use DDG as the default search engine (for Tmux-open) -set -g @open-S 'https://www.duckduckgo.com/' - -# Initialize Tmux plugin manager -run '~/.tmux/plugins/tpm/tpm' \ No newline at end of file +# Import Tmux plugins using TMP +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' +set -g @plugin 'tmux-plugins/tmux-resurrect' +set -g @plugin 'tmux-plugins/tmux-continuum' +set -g @plugin 'tmux-plugins/tmux-yank' +set -g @plugin 'tmux-plugins/tmux-prefix-highlight' +set -g @plugin 'tmux-plugins/tmux-online-status' +set -g @plugin 'tmux-plugins/tmux-open' +set -g @plugin 'tmux-plugins/tmux-open' +set -g @plugin 'jimeh/tmux-themepack' +set -g @plugin 'thewtex/tmux-mem-cpu-load' + +# Set Theme +set -g @themepack 'powerline/default/cyan' + +# Automatically restore session +set -g @continuum-restore 'on' + +# Configure Tmux-prefix-highlight +set -g status-right '#{prefix_highlight} | %a %Y-%m-%d %H:%M' + +# Show current internet status +set -g status-right "Online: #{online_status} | %a %h-%d %H:%M " + +# Show system resource usage +set -g status-right "#[fg=green]#($TMUX_PLUGIN_MANAGER_PATH/tmux-mem-cpu-load/tmux-mem-cpu-load --colors --powerline-right --interval 2)#[default]" + +# Use DDG as the default search engine (for Tmux-open) +set -g @open-S 'https://www.duckduckgo.com/' + +# Initialize Tmux plugin manager +run '~/.tmux/plugins/tpm/tpm'