9 lines
352 B
Lua
9 lines
352 B
Lua
vim.opt.tabstop = 4 -- Set tabstop to 4 spaces
|
|
vim.opt.shiftwidth = 4 -- Set shiftwidth to 4 spaces
|
|
vim.opt.smarttab = true -- Enable smarttab
|
|
vim.opt.expandtab = true -- Convert tabs to spaces
|
|
vim.opt.smartindent = true -- Enable smart indentation
|
|
vim.opt.autoindent = true -- Enable auto indentation
|
|
vim.opt.relativenumber = true
|
|
vim.opt.wrap = true
|