Fix Vue syntax conflicting plugins
This commit is contained in:
parent
6be7878ccc
commit
590af88d27
@ -5,6 +5,9 @@ Plug 'junegunn/fzf.vim'
|
|||||||
Plug 'junegunn/fzf'
|
Plug 'junegunn/fzf'
|
||||||
Plug 'Shougo/neocomplete.vim'
|
Plug 'Shougo/neocomplete.vim'
|
||||||
|
|
||||||
|
" Display indents
|
||||||
|
Plug 'yggdroot/indentline'
|
||||||
|
|
||||||
Plug 'Townk/vim-autoclose'
|
Plug 'Townk/vim-autoclose'
|
||||||
Plug 'vim-syntastic/syntastic'
|
Plug 'vim-syntastic/syntastic'
|
||||||
Plug 'maksimr/vim-jsbeautify'
|
Plug 'maksimr/vim-jsbeautify'
|
||||||
@ -21,7 +24,7 @@ Plug 'ctrlpvim/ctrlp.vim'
|
|||||||
Plug 'ryanoasis/vim-devicons'
|
Plug 'ryanoasis/vim-devicons'
|
||||||
|
|
||||||
" Vue syntax highlighter
|
" Vue syntax highlighter
|
||||||
Plug 'leafOfTree/vim-vue-plugin'
|
Plug 'posva/vim-vue'
|
||||||
|
|
||||||
" Grep utility for whole project
|
" Grep utility for whole project
|
||||||
Plug 'jremmen/vim-ripgrep'
|
Plug 'jremmen/vim-ripgrep'
|
||||||
@ -35,9 +38,6 @@ Plug 'mbbill/undotree'
|
|||||||
" Python auto completion engine
|
" Python auto completion engine
|
||||||
Plug 'davidhalter/jedi-vim'
|
Plug 'davidhalter/jedi-vim'
|
||||||
|
|
||||||
" Display indents
|
|
||||||
Plug 'yggdroot/indentline'
|
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" autocmd vimenter * NERDTree | wincmd w
|
" autocmd vimenter * NERDTree | wincmd w
|
||||||
@ -95,9 +95,7 @@ set foldlevel=99
|
|||||||
|
|
||||||
" indentline configs
|
" indentline configs
|
||||||
let g:indentLine_enabled = 1
|
let g:indentLine_enabled = 1
|
||||||
let g:indentLine_char = '|'
|
let g:indentLine_char_list = ['|', '¦', '┆', '┊']
|
||||||
let g:indentLine_leadingSpaceEnabled = 1
|
|
||||||
let g:indentLine_leadingSpaceChar = '.'
|
|
||||||
let g:indentLine_setColors = 1
|
let g:indentLine_setColors = 1
|
||||||
let g:indentLine_color_gui = "#5C6370"
|
let g:indentLine_color_gui = "#5C6370"
|
||||||
let g:indentLine_showFirstIndentLevel = 1
|
let g:indentLine_showFirstIndentLevel = 1
|
||||||
|
Loading…
Reference in New Issue
Block a user