From c1afe07afd71086ff90e58cd470cd422bf338ba4 Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Thu, 26 Jan 2023 17:01:22 -0800 Subject: [PATCH] Make japanese text not cause spell errors --- init.fnl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.fnl b/init.fnl index 78dc6ad..0074dbe 100644 --- a/init.fnl +++ b/init.fnl @@ -49,7 +49,7 @@ ; Text width (set vim.opt.textwidth 80) ; Spell options -(set vim.opt.spelllang :en_us) +(set vim.opt.spelllang "en_us,cjk") (set vim.opt.spelloptions :camel) ; Allow more freedom with the cursor (set vim.opt.virtualedit :block)