summaryrefslogtreecommitdiffstats
path: root/.vimrc
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2017-06-16 17:33:58 +0200
committerTharre <tharre3@gmail.com>2017-06-16 17:33:58 +0200
commit11cf6dcfe260fc7f3bc965e141a3e75dd089312a (patch)
tree20569febd31313f204185ee44d6d38d1d9af178e /.vimrc
parent5f74365bfd3fe6a06db2f641816311e035442efe (diff)
downloaddotfiles-11cf6dcfe260fc7f3bc965e141a3e75dd089312a.tar.gz
dotfiles-11cf6dcfe260fc7f3bc965e141a3e75dd089312a.tar.xz
dotfiles-11cf6dcfe260fc7f3bc965e141a3e75dd089312a.zip
vim: restrict html linters
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/.vimrc b/.vimrc
index f94b36a..61ab9a8 100644
--- a/.vimrc
+++ b/.vimrc
@@ -137,3 +137,8 @@ nmap <leader>ai <Plug>(JavaComplete-Imports-AddMissing)
" markdown
let g:vim_markdown_math = 1
+
+" html
+let g:ale_linters = {
+\ 'html': ['htmlhint', 'tidy'],
+\}