From 044f5f4c14fa5831657e21dec6a4ad274415c0b5 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 22 Oct 2019 09:39:16 +0200 Subject: [PATCH] [UPDATE][VIM] Disable spell-checking by default I was starting to get annoyed by all the spell-checks happening inside strings and comments that underlined words which are not mistakes but also not in the dictionary. --- vim/.vimrc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/vim/.vimrc b/vim/.vimrc index d86afeb..adec250 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -14,11 +14,6 @@ set hidden " Allow command completion in command-line set wildmenu -" Enable spell-check -set spell -" Use the US English dictionary -set spelllang=en_us - " Enable syntax high-lighting and file-type specific plugins syntax on filetype plugin indent on