From 554340e651ef5cf50274d160593dcb077e941434 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Mon, 28 Oct 2019 08:40:50 +0100 Subject: [PATCH] Added autotag --- nvim/init.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nvim/init.vim b/nvim/init.vim index afd3624..93a71c7 100644 --- a/nvim/init.vim +++ b/nvim/init.vim @@ -28,6 +28,8 @@ Plug 'autozimu/LanguageClient-neovim', { \ 'do': 'bash install.sh', \ } +Plug 'craigemery/vim-autotag' + call plug#end() " tabwidth @@ -57,6 +59,9 @@ augroup END set tags=./tags; nnoremap +" autotag +let g:autotagmaxTagsFileSize = 1024 * 1024 * 128 + " lightline config let g:lightline = { 'colorscheme': 'solarized' }