16 lines
333 B
Lua
16 lines
333 B
Lua
vim.opt.expandtab = true
|
|
vim.opt.smartindent = true
|
|
vim.opt.shiftwidth = 4
|
|
vim.opt.wrap = true
|
|
|
|
vim.opt.linebreak = true
|
|
vim.opt.signcolumn = 'no'
|
|
vim.opt.number = false
|
|
vim.opt.expandtab = true
|
|
vim.opt.smartindent = true
|
|
vim.opt.shiftwidth = 2
|
|
vim.opt.fillchars = { eob = ' ', fold = ' ' }
|
|
|
|
vim.o.list = true
|
|
vim.o.conceallevel = 2
|