Browse Source

Add interactive substitute in vim

coc
Schneider 5 years ago
parent
commit
3d3a2a2df2
Signed by: schneider GPG Key ID: 3F50B02A50039F3B
  1. 3
      init.vim

3
init.vim

@ -87,6 +87,7 @@ Plug 'rhysd/vim-clang-format', { 'for' : ['c', 'cpp', 'java'] }
Plug 'lvht/phpcd.vim', { 'for': 'php', 'do': 'composer install' }
Plug 'captbaritone/better-indent-support-for-php-with-html', { 'for': 'php' }
Plug 'lumiliet/vim-twig', { 'for': [ 'php', 'html' ] } " Twig templates
Plug 'Rican7/php-doc-modded', { 'for': 'php' } " Automatic phpdoc comments
"}}}
" Python{{{
@ -132,6 +133,8 @@ set textwidth=100
set history=1000
set wildignore+=node_modules " ignore node_modules folder from file search
set inccommand=split
" make comments and HTML attributes italic
highlight Comment cterm=italic
highlight htmlArg cterm=italic

Loading…
Cancel
Save