config tabs

This commit is contained in:
Michael Beasley 2024-11-21 16:15:23 -06:00
parent 8b039cc83e
commit 44859c24c8
1 changed files with 6 additions and 0 deletions

View File

@ -21,6 +21,12 @@ vim.opt.number = true
-- Enable mouse mode, can be useful for resizing splits for example!
vim.opt.mouse = 'a'
-- Use spaces instead of tabs
vim.opt.tabstop = 4
vim.opt.softtabstop = 4
vim.opt.shiftwidth = 4
vim.opt.expandtab = true
-- Don't show the mode, since it's already in the status line
vim.opt.showmode = false