config tabs
This commit is contained in:
parent
8b039cc83e
commit
44859c24c8
6
init.lua
6
init.lua
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue