17 lines
446 B
Lua
17 lines
446 B
Lua
vim.opt.breakindent = true
|
|
vim.opt.colorcolumn = '+1'
|
|
vim.opt.completeopt = { 'menu', 'menuone', 'noselect', 'noinsert' }
|
|
vim.opt.foldcolumn = '1'
|
|
vim.opt.foldenable = true
|
|
vim.opt.listchars = { tab = '->', trail = '·' }
|
|
vim.opt.sidescroll = 1
|
|
vim.opt.textwidth = 80
|
|
|
|
vim.g.lazyvim_prettier_needs_config = true
|
|
|
|
vim.filetype.add({
|
|
pattern = {
|
|
['%.env%.[%w_.-]+'] = 'sh.env',
|
|
['.*/.github/workflows/.*%.yml'] = 'yaml.ghaction',
|
|
},
|
|
})
|