Misc Tmux/Vim config updates
This commit is contained in:
parent
547540dfe6
commit
8f02d25ab0
@ -187,7 +187,7 @@
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
let g:airline#extensions#tabline#enabled = 1
|
let g:airline#extensions#tabline#enabled = 1
|
||||||
let g:airline_theme='molokai'
|
let g:airline_theme='deus'
|
||||||
|
|
||||||
let g:rainbow_active = 1 "0 if you want to enable it later via :RainbowToggle
|
let g:rainbow_active = 1 "0 if you want to enable it later via :RainbowToggle
|
||||||
|
|
||||||
|
@ -2,34 +2,47 @@
|
|||||||
# TMUX Configuration file
|
# TMUX Configuration file
|
||||||
#
|
#
|
||||||
# General settings {{{
|
# General settings {{{
|
||||||
set -g prefix C-a
|
set -g default-terminal "tmux-256color"
|
||||||
unbind-key C-b
|
set -g prefix C-a
|
||||||
bind-key C-a send-prefix
|
unbind-key C-b
|
||||||
|
bind-key C-a send-prefix
|
||||||
|
|
||||||
set -g mouse on
|
set -g mouse on
|
||||||
bind r source-file ~/.tmux.conf
|
bind r source-file ~/.tmux.conf
|
||||||
set -g status-position top
|
set -g status-position top
|
||||||
# set -g status-windows-justify middle
|
# set -g status-windows-justify middle
|
||||||
# }}}
|
|
||||||
|
# Colors
|
||||||
|
set -g window-style 'bg=colour236'
|
||||||
|
set -g window-active-style 'bg=black'
|
||||||
|
|
||||||
# Package management {{{
|
# Package management {{{
|
||||||
# List of plugins
|
# List of plugins
|
||||||
set -g @plugin 'tmux-plugins/tpm'
|
set -g @plugin 'tmux-plugins/tpm'
|
||||||
set -g @plugin 'tmux-plugins/tmux-sensible'
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||||||
|
|
||||||
# Other examples:
|
# Other examples:
|
||||||
# set -g @plugin 'github_username/plugin_name'
|
# set -g @plugin 'github_username/plugin_name'
|
||||||
# set -g @plugin 'git@github.com/user/plugin'
|
# set -g @plugin 'git@github.com/user/plugin'
|
||||||
# set -g @plugin 'git@bitbucket.com/user/plugin'
|
# set -g @plugin 'git@bitbucket.com/user/plugin'
|
||||||
|
|
||||||
set -g @plugin 'arcticicestudio/nord-tmux'
|
set -g @plugin 'arcticicestudio/nord-tmux'
|
||||||
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
set -g @plugin 'tmux-plugins/tmux-resurrect'
|
||||||
set -g @plugin 'jimeh/tmux-themepack'
|
set -g @plugin 'jimeh/tmux-themepack'
|
||||||
set -g @themepack 'powerline/default/gray'
|
set -g @themepack 'powerline/default/gray'
|
||||||
|
# }}}
|
||||||
|
# }}}
|
||||||
|
|
||||||
|
# Keyboard shortcuts {{{
|
||||||
|
# Navigation
|
||||||
|
bind -n M-h select-pane -L
|
||||||
|
bind -n M-j select-pane -D
|
||||||
|
bind -n M-k select-pane -U
|
||||||
|
bind -n M-l select-pane -R
|
||||||
# }}}
|
# }}}
|
||||||
|
|
||||||
# Footer {{{
|
# Footer {{{
|
||||||
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
||||||
run '~/.tmux/plugins/tpm/tpm'
|
run '~/.tmux/plugins/tpm/tpm'
|
||||||
# }}}
|
# }}}
|
||||||
# vim: foldenable foldmethod=marker
|
# vim: foldenable foldmethod=marker
|
||||||
|
Loading…
Reference in New Issue
Block a user