dotfiles

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 47ca5a36e2a6f0c40d9ae4b9074234451ff2dcb0 (tree)
parent 61e3dd8e3b15a8ab7a082c99983a8ffec2d5e1e7
Author: Motiejus Jakštys <motiejus@uber.com>
Date:   Tue,  8 Jan 2019 12:39:34 +0200

fix <C-]> in puppet

Diffstat:
Mvim/.vim/vimrc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vim/.vim/vimrc b/vim/.vim/vimrc @@ -30,7 +30,7 @@ au BufRead,BufNewFile *.pp setfiletype puppet au FileType puppet setlocal ts=2 sw=2 sws=2 syntax=ruby au FileType puppet let g:gutentags_enabled = 1 au FileType puppet let b:gutentags_file_list_command = 'git ls-files *.pp' -au FileType puppet nnoremap <C-]> :call search('\s', 'b')<cr> :call search('\w')<cr>vE<C-]> +au FileType puppet nnoremap <C-]> :call search('\s', 'b')<cr>:call search('\w')<cr>vE<C-]> " avro au BufRead,BufNewFile *.avsc setfiletype json