From 4f3ba446348e452701467e06a5fc949c8405d65d Mon Sep 17 00:00:00 2001 From: Mahesh Asolkar Date: Fri, 16 Aug 2019 20:11:59 -0700 Subject: [PATCH] Tmux config --- user.tmux.conf | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 user.tmux.conf diff --git a/user.tmux.conf b/user.tmux.conf new file mode 100644 index 0000000..4b0fc9b --- /dev/null +++ b/user.tmux.conf @@ -0,0 +1,35 @@ +# +# TMUX Configuration file +# +# General settings {{{ + set -g prefix C-a + unbind-key C-b + bind-key C-a send-prefix + + set -g mouse on + bind r source-file ~/.tmux.conf + set -g status-position top + # set -g status-windows-justify middle +# }}} + +# Package management {{{ +# List of plugins + set -g @plugin 'tmux-plugins/tpm' + set -g @plugin 'tmux-plugins/tmux-sensible' + + # Other examples: + # set -g @plugin 'github_username/plugin_name' + # set -g @plugin 'git@github.com/user/plugin' + # set -g @plugin 'git@bitbucket.com/user/plugin' + + set -g @plugin 'arcticicestudio/nord-tmux' + set -g @plugin 'tmux-plugins/tmux-resurrect' + set -g @plugin 'jimeh/tmux-themepack' + set -g @themepack 'powerline/default/gray' +# }}} + +# Footer {{{ + # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) + run '~/.tmux/plugins/tpm/tpm' +# }}} +# vim: foldenable foldmethod=marker