summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/user/options.lua
diff options
context:
space:
mode:
authorjustanothercatgirl <sotov2070@gmail.com>2025-01-17 12:47:53 +0300
committerjustanothercatgirl <sotov2070@gmail.com>2025-01-17 12:47:53 +0300
commitb265c328f04362225a9d001580d0b8f5963ee1d9 (patch)
tree0f924f1bf1ee32a5498617258bbdac21777a0876 /.config/nvim/lua/user/options.lua
parentb2b543355c03ec24281d05380f92e2e793e511f4 (diff)
I don't even know at this point
Diffstat (limited to '.config/nvim/lua/user/options.lua')
-rw-r--r--.config/nvim/lua/user/options.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/.config/nvim/lua/user/options.lua b/.config/nvim/lua/user/options.lua
index 098277d..7a768ab 100644
--- a/.config/nvim/lua/user/options.lua
+++ b/.config/nvim/lua/user/options.lua
@@ -23,6 +23,7 @@ local options = {
expandtab = false, -- !!!!!!!!!
cursorline = false,
number = true,
+ relativenumber = true,
wrap = false,
-- splitting
splitbelow = true,
@@ -31,6 +32,14 @@ local options = {
completeopt = { 'menuone', 'noselect', 'noinsert' },
-- treesitter
foldlevel = 3,
+ spell= true,
+ spelllang="en_gb,ru_yo",
+ mousemodel="popup",
+ spellsuggest = "best,5",
+ undofile = true,
+ undodir = "/home/main/.vim/undo",
+ -- list = true,
+ -- listchars = "space:*,tab:--"
}
for key, val in pairs(options) do