diff --git a/tmux/tmux.conf b/tmux/tmux.conf index dd60fed..1412bd7 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -61,6 +61,7 @@ set -g message-attr bright set -g status-utf8 on setw -g monitor-activity on set -g visual-activity on +set -g allow-rename off set -g status-left-length 40 set -g status-left "#[bright][ #S ]" @@ -101,7 +102,7 @@ bind r source-file ~/.tmux.conf \; display "Config Reloaded!" #bind C-c run "tmux save-buffer - | xclip -i -sel clipboard" # Capture a pane into file for uploading to Gist -bind-key u capture-pane \; save-buffer /tmp/tmux-buffer +# bind-key u capture-pane \; save-buffer /tmp/tmux-buffer ###### # Plugins diff --git a/vim/vimrc-plugins b/vim/vimrc-plugins index 319f1b7..bed1003 100644 --- a/vim/vimrc-plugins +++ b/vim/vimrc-plugins @@ -30,16 +30,20 @@ call plug#begin('~/.vim/bundle') " Current list of plugins Plug 'tpope/vim-fugitive' Plug 'tpope/vim-vinegar' -Plug 'bling/vim-airline' -" Plug 'justinmk/vim-sneak' -" Plug 'ap/vim-templates' -Plug 'vimwiki/vimwiki' -Plug 'mhinz/vim-startify' Plug 'tpope/vim-tbone' Plug 'tpope/vim-surround' +Plug 'vimwiki/vimwiki' +" Plug 'justinmk/vim-sneak' +" Plug 'ap/vim-templates' + + +" Appearance Related +Plug 'mhinz/vim-startify' +Plug 'bling/vim-airline' " Syntax Related Plug 'scrooloose/syntastic' +Plug 'tmux-plugins/vim-tmux' call plug#end()