nvim: enable startofline

This commit is contained in:
He4eT 2025-01-09 19:20:01 +01:00
commit 9b1ffb4637

View file

@ -73,6 +73,9 @@ vim.o.wrap = false
-- Break lines at word
vim.o.linebreak = true
-- Go to start of the line after gg and similar moves
vim.o.startofline = true
-- Show cursorline
vim.o.cursorline = true