8 lines
254 B
Lua
8 lines
254 B
Lua
|
-- options ---------------------------------------------------------------------
|
||
|
vim.opt.tabstop = 2
|
||
|
vim.opt.shiftwidth = 2
|
||
|
vim.opt.expandtab = true
|
||
|
|
||
|
-- treesitter ------------------------------------------------------------------
|
||
|
vim.treesitter.start()
|