blob: ac50ee344b2705e96f178ff5937b5f9bcba4b820 (
plain)
1
2
3
4
5
6
7
|
vim.opt_local.textwidth = vim.g.dotfiles.textwidth.lua -- gw wraps at this value
vim.opt_local.colorcolumn = "+1" -- Highlight one column after 'textwidth'
vim.opt_local.complete = {
"o", -- 'omnifunc' (the snippet engine appends "F" for vim.b.snippets, see plugin/50-snippet.lua)
}
vim.b.format = true -- See plugin/50-format.lua
|