diff options
author | tdro <tdro@users.noreply.github.com> | 2024-01-13 08:03:35 -0500 |
---|---|---|
committer | tdro <tdro@users.noreply.github.com> | 2024-01-13 08:03:35 -0500 |
commit | db5e5c2d7c91e0efbc34999b9824e370aeee5f09 (patch) | |
tree | 87761963dec7b9ea3f46b3cb3398099bbea6003f | |
parent | 76e5fdb122fd82276f06552df5c12e6af65a8506 (diff) | |
download | dotfiles-db5e5c2d7c91e0efbc34999b9824e370aeee5f09.tar.gz dotfiles-db5e5c2d7c91e0efbc34999b9824e370aeee5f09.tar.bz2 dotfiles-db5e5c2d7c91e0efbc34999b9824e370aeee5f09.zip |
.vim/vimrc: Bring back raku check
-rw-r--r-- | .vim/vimrc | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -291,6 +291,7 @@ augroup AutoCommands " Linting file type post write commands. autocmd FileType markdown autocmd! BufWritePost <buffer> :only | :term ++rows=10 sh -c "cat % | vale --ext .md" + autocmd FileType raku autocmd! BufWritePost <buffer> exe 'Notify(''raku -c ' . expand('%') . ' 2>&1'')' | :e autocmd FileType scheme autocmd! BufWritePost <buffer> exe 'Notify(''guile -s ' . expand('%') . ' 2>&1'')' | :e autocmd FileType css autocmd! BufWritePost <buffer> exe 'Notify(''prettier --write --parser css ' . expand('%') . ' 2>&1'')' | :e autocmd FileType html autocmd! BufWritePost <buffer> exe 'Notify(''prettier --write --parser html ' . expand('%') . ' 2>&1'')' | :e |