diff --git a/ale.vim b/ale.vim index 6f50127..0e29878 100644 --- a/ale.vim +++ b/ale.vim @@ -3,7 +3,6 @@ let g:ale_linters = { \ 'python': ['flake8', 'pylint'], \ 'rust': ['rls'], - \ 'markdown': ['languagetool'], \} let g:ale_fixers = { diff --git a/keymap.vim b/keymap.vim index 1a437bb..847e5af 100644 --- a/keymap.vim +++ b/keymap.vim @@ -25,3 +25,6 @@ noremap :bnext :bd# " Map ale wraps to control+k and control+j nmap (ale_previous_wrap) nmap (ale_next_wrap) + +" Map vim-grammarous to +nmap :GrammarousCheck diff --git a/plug.vim b/plug.vim index 661de06..98ee311 100644 --- a/plug.vim +++ b/plug.vim @@ -25,6 +25,7 @@ Plug 'dense-analysis/ale' " Language support for LaTeX Plug 'vim-latex/vim-latex' +Plug 'rhysd/vim-grammarous' " Syntaxhighlighting for mediawiki code Plug 'chikamichi/mediawiki.vim'