From f6d16c2a34f7bdec03e0ff8ff25e6a66b0a908fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sat, 15 Oct 2022 21:16:42 +0200 Subject: [PATCH] Add the indentLine vim plugin --- .vimrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.vimrc b/.vimrc index fa4360a..b84a6c3 100644 --- a/.vimrc +++ b/.vimrc @@ -18,6 +18,7 @@ Plugin 'sjl/badwolf' " A Vim color scheme. Plugin 'rust-lang/rust.vim' " Vim configuration for Rust. Plugin 'cespare/vim-toml' " Vim syntax for TOML. Plugin 'editorconfig/editorconfig-vim' " EditorConfig plugin +Plugin 'Yggdroot/indentLine' " Display thin vertical lines at each indentation level call vundle#end() @@ -72,5 +73,9 @@ let g:licenses_default_commands = ['affero', 'apache', 'bsd3', 'cecill', 'gfdl', :augroup END +" Vertical indentation lines +let g:indentLine_char = '⦙' + + " Tera templates autocmd BufNewFile,BufRead *.tera set syntax=htmldjango