7 lines
228 B
Lua
7 lines
228 B
Lua
--[[
|
|
Loads tab and indent settings
|
|
--]]
|
|
|
|
vim.opt.tabstop = 4 -- number of space equivalent to a tab
|
|
vim.opt.shiftwidth = 4 -- number of space to use for indenting
|
|
vim.opt.smartindent = true -- can auto insert indent
|