aboutsummaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2021-03-01 23:31:03 -0500
committertdro <tdro@users.noreply.github.com>2021-03-01 23:32:51 -0500
commit27d0982dae6bdc8a8129564f340bae35d119d2b3 (patch)
tree2b99e987ba4aa6e5a6cfdb5afceb822d4e8d5fc3 /.vimrc
parenta79f67b0d7520f7fe854b75471d5c24dc9bfebac (diff)
downloaddotfiles-27d0982dae6bdc8a8129564f340bae35d119d2b3.tar.gz
dotfiles-27d0982dae6bdc8a8129564f340bae35d119d2b3.tar.bz2
dotfiles-27d0982dae6bdc8a8129564f340bae35d119d2b3.zip
.vimrc: Lint json
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc1
1 files changed, 1 insertions, 0 deletions
diff --git a/.vimrc b/.vimrc
index 45c0245..2902612 100644
--- a/.vimrc
+++ b/.vimrc
@@ -313,6 +313,7 @@ augroup AutoCommands
autocmd FileType bash,sh autocmd! BufWritePost <buffer> :call ShellCheck()
autocmd FileType nix autocmd! BufWritePost <buffer> silent call NixCheck()
autocmd FileType elixir autocmd! BufWritePost <buffer> :call ElixirFormat()
+ autocmd FileType json autocmd! BufWritePost <buffer> silent !notify-send "$(jsonlint -i % 2>&1 && echo 'json OK: %')"
autocmd FileType css autocmd! BufWritePost <buffer> silent !notify-send "$(prettier --write --parser css % 2>&1)"
autocmd FileType rust autocmd! BufWritePost <buffer> silent !notify-send "$(rustfmt % 2>&1 && echo 'rustfmt OK: %')"
autocmd FileType c autocmd! BufWritePost <buffer> silent !notify-send "$(clang-format -i % 2>&1 && echo 'clang-format OK: %')"