update
This commit is contained in:
parent
8f505af08d
commit
21352b5aeb
3 changed files with 769 additions and 55 deletions
|
|
@ -71,10 +71,6 @@
|
|||
command! -nargs=? Fold :call CocAction('fold', <f-args>)
|
||||
|
||||
" }}}
|
||||
" #css3-syntax{{{
|
||||
Plug 'hail2u/vim-css3-syntax'
|
||||
|
||||
"}}}
|
||||
" #delimitMate{{{
|
||||
" https://github.com/Raimondi/delimitMate
|
||||
Plug 'Raimondi/delimitMate'
|
||||
|
|
@ -116,16 +112,6 @@
|
|||
xmap ih <Plug>GitGutterTextObjectInnerVisual
|
||||
xmap ah <Plug>GitGutterTextObjectOuterVisual
|
||||
|
||||
"}}}
|
||||
" #html5{{{
|
||||
" https://github.com/othree/html5.vim
|
||||
Plug 'othree/html5.vim'
|
||||
|
||||
"}}}
|
||||
" #i3config.vim{{{
|
||||
" https://github.com/mboughaba/i3config.vim
|
||||
Plug 'mboughaba/i3config.vim'
|
||||
|
||||
"}}}
|
||||
" #MatchTagAlways{{{
|
||||
" https://github.com/Valloric/MatchTagAlways
|
||||
|
|
@ -138,11 +124,6 @@ let g:mta_filetypes = {
|
|||
\ 'xml' : 1,
|
||||
\}
|
||||
"}}}
|
||||
" #php.vim{{{
|
||||
" https://github.com/StanAngeloff/php.vim
|
||||
Plug 'StanAngeloff/php.vim'
|
||||
|
||||
"}}}
|
||||
" #phpcomplete.vim{{{
|
||||
" https://github.com/shawncplus/phpcomplete.vim
|
||||
Plug 'shawncplus/phpcomplete.vim'
|
||||
|
|
@ -151,6 +132,18 @@ let g:mta_filetypes = {
|
|||
" https://github.com/joseluis/wordpress.vim-generator
|
||||
|
||||
"}}}
|
||||
" #polyglot{{{
|
||||
" https://github.com/sheerun/vim-polyglot
|
||||
Plug 'sheerun/vim-polyglot'
|
||||
|
||||
" vue options
|
||||
let g:vue_disable_pre_processors=0
|
||||
" set custom syntax highlighting
|
||||
augroup fixhighlighting
|
||||
autocmd!
|
||||
autocmd BufNewFile,BufRead *.vue syntax sync fromstart
|
||||
augroup END
|
||||
"}}}
|
||||
" #quickscope{{{
|
||||
" https://github.com/unblevable/quick-scope
|
||||
Plug 'unblevable/quick-scope'
|
||||
|
|
@ -161,10 +154,6 @@ let g:mta_filetypes = {
|
|||
Plug 'luochen1990/rainbow'
|
||||
let g:rainbow_active = 0
|
||||
nnoremap <silent><space>rt :RainbowToggle<cr>
|
||||
"}}}
|
||||
" #scss-syntax{{{
|
||||
Plug 'cakebaker/scss-syntax.vim'
|
||||
|
||||
"}}}
|
||||
" #switch {{{
|
||||
"https://github.com/AndrewRadev/switch.vim
|
||||
|
|
@ -296,21 +285,12 @@ let g:mta_filetypes = {
|
|||
let g:gutentags_ctags_tagfile = '.tags'
|
||||
let g:gutentags_ctags_exclude = ['package.json', 'Session.vim', 'package-lock.json', 'TODO.txt']
|
||||
|
||||
"}}}
|
||||
" #vim-javascript{{{
|
||||
Plug 'pangloss/vim-javascript'
|
||||
|
||||
"}}}
|
||||
" #vim-Jinja2-Syntax{{{
|
||||
" https://github.com/studio-vx/Vim-Jinja2-Syntax
|
||||
" original: https://github.com/Glench/Vim-Jinja2-Syntax
|
||||
Plug 'studio-vx/Vim-Jinja2-Syntax'
|
||||
|
||||
"}}}
|
||||
" #vim-json{{{
|
||||
" https://github.com/elzr/vim-json
|
||||
Plug 'elzr/vim-json'
|
||||
|
||||
"}}}
|
||||
" #vim-SyntaxRange{{{
|
||||
" https://github.com/inkarkat/vim-SyntaxRange
|
||||
|
|
@ -318,29 +298,6 @@ let g:mta_filetypes = {
|
|||
" command! HiJinja call SyntaxRange#Include('{{', '}}', 'jinja', 'jinjaBraces', 'jinjaVariable')
|
||||
" command! HiJinja call SyntaxRange#IncludeEx('start=/{{-\?/hs=s+2 end=/-\?}}/he=s-1', 'jinja')
|
||||
"}}}
|
||||
" #vim-vue {{{
|
||||
" https://github.com/posva/vim-vue
|
||||
Plug 'posva/vim-vue'
|
||||
|
||||
" disable preprocessor checking for vue files - increases speed
|
||||
let g:vue_disable_pre_processors=0
|
||||
" set custom syntax highlighting
|
||||
augroup fixhighlighting
|
||||
autocmd!
|
||||
autocmd BufNewFile,BufRead *.vue syntax sync fromstart
|
||||
augroup END
|
||||
" }}}
|
||||
" #vim-yaml {{{
|
||||
" https://github.com/stephpy/vim-yaml
|
||||
Plug 'stephpy/vim-yaml'
|
||||
"}}}
|
||||
" #python-syntax {{{
|
||||
" https://github.com/vim-python/python-syntax
|
||||
Plug 'vim-python/python-syntax'
|
||||
let g:python_highlight_all = 1
|
||||
|
||||
|
||||
"}}}
|
||||
" #wordpress.vim{{{
|
||||
" doesn't support universal ctags
|
||||
" #Plug 'dsawardekar/wordpress.vim'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue