Browse Source

Disable C#, support tags, include php support

coc
Schneider 7 years ago
parent
commit
e9b55d906e
  1. 11
      vimrc.symlink

11
vimrc.symlink

@ -31,6 +31,7 @@ Plug 'tpope/vim-repeat'
Plug 'vim-syntastic/syntastic'
Plug 'altercation/vim-colors-solarized'
Plug 'godlygeek/tabular' " Align text on symbols
Plug 'szw/vim-tags' , { 'for' : 'php' } " tags support
" html / templates
Plug 'mattn/emmet-vim', { 'for': ['html', 'php', 'gohtmltmpl', 'vue'] } " emmet support for vim - easily create markdup wth CSS-like syntax
@ -72,8 +73,12 @@ 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'
"Plug 'OmniSharp/omnisharp-vim', { 'for': 'cs' }
"let g:OmniSharp_server_type = 'roslyn'
" PHP
Plug 'shawncplus/phpcomplete.vim', { 'for': 'php', 'do': 'curl -Ss http://vim-php.com/phpctags/install/phpctags.phar > ~/bin/phpctags && chmod +x ~/bin/phpctags' }
" All of your Plugins must be added before the following line
call plug#end() " required
@ -150,6 +155,8 @@ set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let vim_tags_ctags_binary='~/bin/phpctags'
" M A P P I N G S
let mapleader = ","
" CtrlP for Tags

Loading…
Cancel
Save