11 lines
224 B
Lua
11 lines
224 B
Lua
vim.o.textwidth = 80
|
|
vim.o.colorcolumn = '+1'
|
|
|
|
vim.g.lazyvim_prettier_needs_config = true
|
|
|
|
vim.filetype.add({
|
|
pattern = {
|
|
['%.env%.[%w_.-]+'] = 'sh.env',
|
|
['.*/.github/workflows/.*%.yml'] = 'yaml.ghaction',
|
|
},
|
|
})
|