diff --git a/nvim/lua/config/options.lua b/nvim/lua/config/options.lua index de7775e..a67063f 100644 --- a/nvim/lua/config/options.lua +++ b/nvim/lua/config/options.lua @@ -1,6 +1,5 @@ vim.opt.langmap = "+]ü[" vim.keymap.set("n", "ü", "[", {remap=true}) -vim.keymap.set("n", "Ü", "]", {remap=true}) vim.opt.expandtab = true vim.opt.shiftwidth = 4 @@ -68,10 +67,10 @@ vim.opt.inccommand = 'split' -- Show which line your cursor is on vim.opt.cursorline = true -vim.opt.cursorcolumn = true +vim.opt.cursorcolumn = false -- Minimal number of screen lines to keep above and below the cursor. -vim.opt.scrolloff = 35 +vim.opt.scrolloff = 20 -- if performing an operation that would fail due to unsaved changes in the buffer (like `:q`), -- instead raise a dialog asking if you wish to save the current file(s)