From 30ea1eed72530a67909f3622fd209c6d83923d22 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Fri, 11 Oct 2019 17:16:11 +0200 Subject: [PATCH] [ADD][VIM] Enable US English spelling by default --- vim/.vimrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vim/.vimrc b/vim/.vimrc index bec595e..4b05824 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -14,6 +14,11 @@ 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