diff options
| -rw-r--r-- | .config/nvim/lua/init/01-options.lua | 1 | ||||
| -rw-r--r-- | .vimrc | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/.config/nvim/lua/init/01-options.lua b/.config/nvim/lua/init/01-options.lua index d90ef2a..6bf7dfb 100644 --- a/.config/nvim/lua/init/01-options.lua +++ b/.config/nvim/lua/init/01-options.lua @@ -42,6 +42,7 @@ O.synmaxcol = 500 O.hlsearch = true O.termguicolors = true O.colorcolumn = '+1' +OPT.spelloptions:append('camel') -- Multiple windows {{{1 @@ -56,6 +56,9 @@ set synmaxcol=500 set hlsearch set t_Co=256 set colorcolumn=+1 +if has('patch-8.2.0953') + set spelloptions+=camel +endif set laststatus=2 set winminheight=0 |
