From 3274676e58899cf3942a33c3a37ef9f0dea5452e Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sun, 2 Aug 2020 15:01:18 +0200 Subject: [PATCH] vim: Add filetype settings for jinja.html --- home/.config/nvim/ftdetect/filetypes.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/home/.config/nvim/ftdetect/filetypes.vim b/home/.config/nvim/ftdetect/filetypes.vim index 006e2fe..75f22db 100644 --- a/home/.config/nvim/ftdetect/filetypes.vim +++ b/home/.config/nvim/ftdetect/filetypes.vim @@ -14,6 +14,7 @@ autocmd Filetype gitcommit setlocal colorcolumn=72 autocmd Filetype go setlocal ts=4 sw=4 sts=4 autocmd Filetype haskell setlocal ts=4 sw=4 sts=4 expandtab autocmd Filetype html setlocal ts=2 sw=2 sts=2 expandtab +autocmd Filetype jinja.html setlocal ts=2 sw=2 sts=2 expandtab autocmd Filetype javascript setlocal ts=2 sw=2 sts=2 expandtab autocmd Filetype jinja setlocal ts=2 sw=2 sts=2 expandtab autocmd Filetype json setlocal ts=2 sw=2 sts=2 expandtab