commit 3554626559fa63434d429089b58d791b57807e05
parent 647b96badcbf107e57ef80656cb58c132181fdf4
Author: M. Yamanaka <myamanaka@live.com>
Date: Thu, 31 Dec 2020 01:05:40 -0500
added consideration for .rasi filetype in vimrc
Diffstat:
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/vimrc b/vimrc
@@ -18,7 +18,9 @@ set autoindent
set showmatch
"I only need line numbers for specific things
-au filetype c,cpp,sh,python,java,haskell set number
+au filetype c,cpp,sh,python,java,haskell,php,html,css set number
+"since I use rofi sometimes, rasi files should be treated as css files
+au BufNewFile,BufRead *.rasi set filetype=css
"I usually write make files regardless of the language I use so this is set globally
nnoremap <leader>c :make<CR>