From 78cf164e74abe1563013e41243f4a8027da901e7 Mon Sep 17 00:00:00 2001 From: Marcel Schneider Date: Sat, 13 May 2017 10:25:19 +0200 Subject: [PATCH] Install vim-go automatically --- vimrc.symlink | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vimrc.symlink b/vimrc.symlink index 27af535..819bcfe 100644 --- a/vimrc.symlink +++ b/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