From 87e4cfe1f22ca03337caa42ab7e6c7ec60e53923 Mon Sep 17 00:00:00 2001 From: Jali Date: Sun, 25 Jul 2021 11:15:03 +0200 Subject: [PATCH] Configured vim grammarous --- ale.vim | 1 - keymap.vim | 3 +++ plug.vim | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) 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'