Refactor: Use vim.o and adjust scrolling/wrapping options

pull/1642/head
MN-nagy 2 weeks ago
parent 13ba71f90a
commit 87d4ff8a74

@ -167,13 +167,13 @@ vim.o.scrolloff = 10
vim.o.confirm = true vim.o.confirm = true
-- Enable undo/redo changes even after closing and reopening a file -- Enable undo/redo changes even after closing and reopening a file
vim.opt.undofile = true vim.o.undofile = true
-- Enable smooth scrolling -- Disable line wrapping
vim.opt.smoothscroll = true vim.o.wrap = false
-- Highlight max chars per line -- Highlight max chars per line
-- vim.opt.colorcolumn = '100' -- vim.o.colorcolumn = '100'
-- [[ Basic Keymaps ]] -- [[ Basic Keymaps ]]
-- See `:help vim.keymap.set()` -- See `:help vim.keymap.set()`

Loading…
Cancel
Save