Revert "nvim: init.vim: Add ALE for linting"

This reverts commit 286558f5af.
This commit is contained in:
Sanchayan Maity 2020-07-09 19:27:47 +05:30
parent d6e3c1a611
commit eb55c80682
2 changed files with 0 additions and 16 deletions

View file

@ -30,8 +30,6 @@ Plug 'vim-utils/vim-husk'
Plug 'luochen1990/rainbow'
" Formatting
Plug 'sbdchd/neoformat'
" Linting
Plug 'dense-analysis/ale'
" Run things async
Plug 'hauleth/asyncdo.vim'
" Quickfix

View file

@ -47,20 +47,6 @@ let g:sneak#label = 1
let g:sneak#s_next = 1
let g:sneak#use_ic_scs = 0
" ALE
let g:ale_linters_explicit = 1
let g:ale_lint_on_enter = 0
let g:ale_lint_on_save = 1
let g:ale_lint_on_text_changed = 'never'
let g:ale_linters = {
\ 'haskell': ['hlint'],
\ 'clojure': ['clj-kondo', 'joker'],
\ 'purescript': ['purty'],
\ 'python' : ['autopep8', 'flake8'],
\ 'fish' : ['fish'],
\ 'bash' : ['shellcheck']
\}
" Neovim LSP Diagnostics
let g:diagnostic_enable_virtual_text = 0
let g:diagnostic_show_sign = 1