diff --git a/.tmux.conf b/.tmux.conf index 6486255..cf32445 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -35,3 +35,7 @@ set-window-option -g pane-base-index 1 # Move to next/previous window with Alt+k/Alt+j bind -n M-j previous-window bind -n M-k next-window + +# Fix tmux color issue for vim +set -g default-terminal "xterm-256color" + diff --git a/.vim/vimrc b/.vim/vimrc index 6c9fdfa..1331a40 100644 --- a/.vim/vimrc +++ b/.vim/vimrc @@ -46,8 +46,8 @@ call plug#begin('~/.vim/autoload/plug') Plug 'davidhalter/jedi-vim' Plug 'vim-airline/vim-airline' -Plug 'preservim/nerdtree' Plug 'vim-airline/vim-airline-themes' +Plug 'preservim/nerdtree' Plug 'morhetz/gruvbox' Plug 'sheerun/vim-polyglot' Plug 'ryanoasis/vim-devicons' @@ -55,6 +55,9 @@ Plug 'scrooloose/nerdcommenter' Plug 'Xuyuanp/nerdtree-git-plugin' Plug 'tiagofumo/vim-nerdtree-syntax-highlight' Plug 'PhilRunninger/nerdtree-visual-selection' +Plug 'tpope/vim-fugitive' +Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } +Plug 'tpope/vim-fireplace', { 'for': 'clojure' } call plug#end()