From 48db037cfc3caba0928db3f1ccb6052950fea532 Mon Sep 17 00:00:00 2001 From: Garrett Dawson Date: Fri, 14 Apr 2023 23:15:16 -0600 Subject: [PATCH] fix: comment out spell --- after/plugin/defaults.lua | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/after/plugin/defaults.lua b/after/plugin/defaults.lua index 2ecd1d89..3ec96904 100644 --- a/after/plugin/defaults.lua +++ b/after/plugin/defaults.lua @@ -4,14 +4,16 @@ set.colorcolumn = "80,120" set.cursorline = true set.expandtab = true set.list = true -set.swapfile = false -set.writebackup = false -set.wrap = false set.shiftwidth = 2 +-- set.spell = true +-- set.spelllang = 'en_us' set.splitbelow = true set.splitright = true +set.swapfile = false set.tabstop = 2 set.textwidth = 80 +set.wrap = false +set.writebackup = false vim.o.inccommand = "nosplit"