Updated nvim quality of life settings

This commit is contained in:
mattr
2024-10-04 18:29:43 -05:00
parent df1a152130
commit 32d72c3c69

View File

@@ -39,7 +39,7 @@ vim.opt.updatetime = 250
-- Decrease mapped sequence wait time
-- Displays which-key popup sooner
vim.opt.timeoutlen = 300
vim.opt.timeoutlen = 200
-- Configure how new splits should be opened
vim.opt.splitright = true
@@ -57,6 +57,10 @@ vim.opt.inccommand = 'split'
-- Show which line your cursor is on
vim.opt.cursorline = true
-- Spelling Correction
vim.opt.spell = true
-- vim.opt.spelllang = 'en'
-- Tabulation Stuffs
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
@@ -65,7 +69,7 @@ vim.opt.expandtab = true
vim.opt.scrolloff = 10
-----------------------------
-- QoL Keybinds:
-- Quality of Life Keybinds:
-----------------------------
vim.keymap.set('n', '<C-s>', '<cmd>w<CR>')