diff --git a/init.vim b/init.vim index 9401d83..2f3986c 100644 --- a/init.vim +++ b/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