From 3d3a2a2df2914194b5ba4f64dee01a2276b367d3 Mon Sep 17 00:00:00 2001 From: Marcel Schneider Date: Wed, 13 Mar 2019 15:26:06 +0100 Subject: [PATCH] Add interactive substitute in vim --- init.vim | 3 +++ 1 file changed, 3 insertions(+) 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