feat: go to start of line for big motionms

This commit is contained in:
nikolay 2025-01-04 20:06:58 +00:00
parent 8e6e870f77
commit b2f5848886
1 changed files with 3 additions and 0 deletions

View File

@ -18,6 +18,9 @@ vim.opt.number = true
-- Experiment for yourself to see if you like it! -- Experiment for yourself to see if you like it!
vim.opt.relativenumber = true vim.opt.relativenumber = true
-- Go to start of line for big motions - gg, G, ctrl+d/e , etc
vim.opt.startofline = true
-- Enable mouse mode, can be useful for resizing splits for example! -- Enable mouse mode, can be useful for resizing splits for example!
vim.opt.mouse = 'a' vim.opt.mouse = 'a'