|
@@ -45,6 +45,7 @@ Plug 'honza/vim-snippets'
|
|
|
" On-demand loading
|
|
|
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
|
|
|
Plug 'Xuyuanp/nerdtree-git-plugin'
|
|
|
+Plug 'ryanoasis/vim-devicons'
|
|
|
Plug 'tpope/vim-fireplace', { 'for': 'clojure' }
|
|
|
|
|
|
Plug 'Valloric/YouCompleteMe'
|
|
@@ -61,6 +62,7 @@ Plug 'ncm2/ncm2-bufword'
|
|
|
" Plug 'ncm2/ncm2-tmux'
|
|
|
Plug 'ncm2/ncm2-path'
|
|
|
" Plug 'ncm2/utilsnips'
|
|
|
+Plug 'wakatime/vim-wakatime'
|
|
|
|
|
|
|
|
|
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
|
@@ -97,9 +99,7 @@ Plug 'zivyangll/git-blame.vim'
|
|
|
|
|
|
Plug 'simplyzhao/cscope_maps.vim'
|
|
|
|
|
|
-Plug 'bfrg/vim-cpp-modern'
|
|
|
Plug 'tpope/vim-commentary'
|
|
|
-Plug 'octol/vim-cpp-enhanced-highlight'
|
|
|
Plug 'isRuslan/vim-es6'
|
|
|
Plug 'rhysd/vim-clang-format'
|
|
|
|
|
@@ -116,7 +116,7 @@ let g:cpp_experimental_template_highlight = 1
|
|
|
|
|
|
let g:airline#extensions#tabline#enabled = 1
|
|
|
" Chromatica for better better C/C++ syntax highlighting
|
|
|
-let g:chromatica#libclang_path='/usr/local/opt/llvm/lib'
|
|
|
+let g:chromatica#libclang_path='/usr/lib'
|
|
|
let g:chromatica#enable_at_startup=1
|
|
|
|
|
|
|
|
@@ -159,5 +159,9 @@ let g:gutentags_enabled = 0
|
|
|
au FileType c,cpp,javascript,python,java,scala,sh,groovy,vim let g:gutentags_enabled=1
|
|
|
augroup plug#end
|
|
|
|
|
|
+ Plug 'bfrg/vim-cpp-modern'
|
|
|
+Plug 'octol/vim-cpp-enhanced-highlight'
|
|
|
+
|
|
|
autocmd FileType c,cpp,h,hpp ClangFormatAutoEnable
|
|
|
+set encoding=UTF-8
|
|
|
|