5 lines
217 B
Lua
5 lines
217 B
Lua
-- set default tab width to 2 spaces
|
|
vim.opt_local.tabstop = 2 -- number of spaces that a tab counts for
|
|
vim.opt_local.shiftwidth = 2 -- size of an autoindented shift
|
|
vim.opt_local.softtabstop = 0 -- indentation size
|