4 lines
194 B
Lua
4 lines
194 B
Lua
vim.bo.tabstop = 2
|
|
vim.bo.shiftwidth = 0 -- use 'tabstop' for indenting
|
|
vim.opt.formatoptions:append('t') -- wrap text on 'textwidth'
|
|
vim.opt.spell = true -- turn on spell checking
|