1
0
forked from extern/nix-config

vim: Don't show spelling errors for CJK characters

This makes dealing with CJK files inside vim a much more pleasant
experience. Note that automatically handling Shift JIS encoded files is
something I haven't implemented yet, although a simple keybind could
make things more manageable.
This commit is contained in:
Donovan Glover 2022-10-24 11:18:17 -04:00
parent a449ddfbec
commit 5437f3237e
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -73,6 +73,7 @@ set ignorecase " By default use case-insensitive search (combine
set smartcase " Make search case-sensitive when using capital letters
set showcmd " Always show the current keybinding being executed
set spell " Enable spell check by default
set spelllang=en_us,cjk " Don't show errors for CJK characters
set hidden " Switch between buffers without saving them
set incsearch " Automatically move to text as you search for it