diff options
Diffstat (limited to '.config/nvim/lua/user/options.lua')
-rw-r--r-- | .config/nvim/lua/user/options.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.config/nvim/lua/user/options.lua b/.config/nvim/lua/user/options.lua index 7a768ab..efa207a 100644 --- a/.config/nvim/lua/user/options.lua +++ b/.config/nvim/lua/user/options.lua @@ -23,7 +23,7 @@ local options = { expandtab = false, -- !!!!!!!!! cursorline = false, number = true, - relativenumber = true, + relativenumber = true, wrap = false, -- splitting splitbelow = true, @@ -32,9 +32,9 @@ local options = { completeopt = { 'menuone', 'noselect', 'noinsert' }, -- treesitter foldlevel = 3, - spell= true, - spelllang="en_gb,ru_yo", - mousemodel="popup", + spell = ture, + spelllang = "en_gb,ru_yo", + mousemodel = "popup", spellsuggest = "best,5", undofile = true, undodir = "/home/main/.vim/undo", |