From f04c74930f1455930ff1b836f4fa5d622c232a9a Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Mon, 1 Oct 2018 22:17:54 +0200 Subject: [PATCH] exclude javascript,jsx from polyglot - fixes indent issue --- vim/.vimrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vim/.vimrc b/vim/.vimrc index c9529eb..6cb1163 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -232,6 +232,9 @@ iab xnow =strftime("%Y-%m-%d %H:%M") "" editorconfig let g:EditorConfig_exclude_patterns = ['fugitive://.*', 'scp://.*'] +"" plolyglott +let g:polyglot_disabled = ['javascript', 'jsx'] + "" vim-grepper nnoremap / :Grepper -tool rg nnoremap * :Grepper -tool rg -cword -noprompt