Merge new modular config

This commit is contained in:
smashblu 2024-09-22 19:16:16 -07:00
parent 270d774c6f
commit efd0b9e719
9 changed files with 99 additions and 835 deletions

View file

@ -7,7 +7,7 @@
vim.opt.number = true
-- You can also add relative line numbers, to help with jumping.
-- Experiment for yourself to see if you like it!
-- vim.opt.relativenumber = true
vim.opt.relativenumber = true
-- Enable mouse mode, can be useful for resizing splits for example!
vim.opt.mouse = 'a'
@ -60,6 +60,10 @@ vim.opt.inccommand = 'split'
vim.opt.cursorline = true
-- Minimal number of screen lines to keep above and below the cursor.
vim.opt.scrolloff = 10
vim.opt.scrolloff = 12
-- Set spell check on with English language
vim.opt.spelllang = 'en_us'
vim.opt.spell = true
-- vim: ts=2 sts=2 sw=2 et