aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2023-10-04 21:33:38 -0400
committertdro <tdro@users.noreply.github.com>2023-10-04 21:33:38 -0400
commitb8818fdcfce1562b80413b7363f51dabe03b94ed (patch)
tree50e8a8023acfacf3311317504fef9c07a5f0d9c8
parentc547a4a707916cc9e684fe737b00d144686fb249 (diff)
downloaddotfiles-b8818fdcfce1562b80413b7363f51dabe03b94ed.tar.gz
dotfiles-b8818fdcfce1562b80413b7363f51dabe03b94ed.tar.bz2
dotfiles-b8818fdcfce1562b80413b7363f51dabe03b94ed.zip
.vim/vimrc: Fix blade templates highlighting
-rw-r--r--.vim/vimrc9
1 files changed, 5 insertions, 4 deletions
diff --git a/.vim/vimrc b/.vim/vimrc
index ae2f235..00a5551 100644
--- a/.vim/vimrc
+++ b/.vim/vimrc
@@ -362,10 +362,11 @@ augroup AutoCommands
autocmd FileType ruby set formatprg=rubocop\ --autocorrect\ --stderr\ --stdin\ %\ 2>\ \/dev\/null
" Set file types.
- autocmd BufRead,BufNewFile *.nims set filetype=nim
- autocmd BufRead,BufNewFile *.rasi set filetype=css
- autocmd BufRead,BufNewFile *.doas set filetype=conf
- autocmd BufRead,BufNewFile *.nft set filetype=nftables
+ autocmd BufRead,BufNewFile *.nims set filetype=nim
+ autocmd BufRead,BufNewFile *.rasi set filetype=css
+ autocmd BufRead,BufNewFile *.doas set filetype=conf
+ autocmd BufRead,BufNewFile *.nft set filetype=nftables
+ autocmd BufRead,BufNewFile *.blade.php set filetype=php
" Clear notification on cursor movement.
autocmd CursorMoved * silent! call popup_clear()