Browse Source

Install vim-go automatically

coc
Schneider 7 years ago
parent
commit
78cf164e74
  1. 6
      vimrc.symlink

6
vimrc.symlink

@ -53,7 +53,7 @@ Plug 'posva/vim-vue', { 'for': [ 'javascript', 'html', 'vue' ] } " vue.js integr
"Plug 'posva/vim-vue'
" Go
Plug 'fatih/vim-go', { 'for': [ 'go', 'html', 'gohtmltmpl' ] } " go support
Plug 'fatih/vim-go', { 'for': [ 'go', 'html', 'gohtmltmpl' ], 'do': ':GoInstallBinaries' } " go support
" LaTeX
Plug 'LaTeX-Box-Team/LaTeX-Box', { 'for': 'tex' }
@ -76,6 +76,10 @@ Plug 'nbouscal/vim-stylish-haskell', { 'for': 'haskell' }
Plug 'Rip-Rip/clang_complete', { 'for': ['c', 'cpp'], 'do': 'make install' }
let g:clang_library_path='/usr/lib/llvm-4.0/lib/libclang-4.0.so.1'
" C#
Plug 'OmniSharp/omnisharp-vim', { 'for': 'cs' }
let g:OmniSharp_server_type = 'roslyn'
set wildignore+=node_modules
" All of your Plugins must be added before the following line

Loading…
Cancel
Save