From 27898367436aaec1add553a4985ebfc5b285982c Mon Sep 17 00:00:00 2001 From: druckdev <63563978+druckdev@users.noreply.github.com> Date: Wed, 23 Sep 2020 01:45:31 +0200 Subject: [PATCH] vim: Explicitly load filetype plugins and indent My system installation did that automatically but apparently that is not the norm. --- .config/vim/vimrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/vim/vimrc b/.config/vim/vimrc index c5d39cb..f47cea5 100644 --- a/.config/vim/vimrc +++ b/.config/vim/vimrc @@ -156,3 +156,6 @@ else autocmd VimLeave * silent !echo -ne "\e[5 q" endif endif + +" Load filetype plugins +filetype plugin indent on