Using LanguageClient
This commit is contained in:
parent
c8aaa78f59
commit
6e701541ca
7 changed files with 40 additions and 20 deletions
|
@ -15,10 +15,6 @@ let g:ale_php_phpcs_standard = '/srv/http/machines/ruleset.xml'
|
|||
|
||||
nmap <F7> :UndotreeToggle<CR>
|
||||
|
||||
""" TAGBAR """
|
||||
|
||||
nmap <F8> :TagbarToggle<CR>
|
||||
|
||||
""" VIM-AIRLINE """
|
||||
|
||||
set noshowmode
|
||||
|
@ -109,3 +105,17 @@ autocmd FileType * call LC_maps()
|
|||
""" deoplete """
|
||||
|
||||
let g:deoplete#enable_at_startup = 1
|
||||
|
||||
""" vista.vim """
|
||||
|
||||
nmap <F8> :Vista!!<CR>
|
||||
let g:vista_icon_indent = ["▸ ", ""]
|
||||
|
||||
let g:vista#renderer#enable_icon = 0
|
||||
|
||||
" The default icons can't be suitable for all the filetypes, you can extend it as you wish.
|
||||
let g:vista#renderer#icons = {
|
||||
\ "function": "f",
|
||||
\ "variable": "x",
|
||||
\ }
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ Plug 'vim-airline/vim-airline-themes'
|
|||
Plug 'airblade/vim-gitgutter'
|
||||
Plug 'mbbill/undotree'
|
||||
Plug 'ludovicchabant/vim-gutentags'
|
||||
Plug 'majutsushi/tagbar'
|
||||
" Plug 'majutsushi/tagbar'
|
||||
Plug 'wellle/targets.vim'
|
||||
" Plug 'Chiel92/vim-autoformat'
|
||||
Plug 'tomtom/tcomment_vim'
|
||||
|
@ -83,5 +83,8 @@ Plug 'autozimu/LanguageClient-neovim', {
|
|||
" Activity watch
|
||||
" (might not want this on every install)
|
||||
|
||||
" Tag bar
|
||||
Plug 'liuchengxu/vista.vim'
|
||||
|
||||
call plug#end()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue