blob: 63045ed78ed27899966eebfb6d24026e620c7b93 (
plain)
1
2
3
4
5
6
7
|
vim.opt_local.textwidth = vim.g.dotfiles.textwidth.python
vim.opt_local.colorcolumn = "+1" -- Highlight one column after 'textwidth'
vim.opt_local.complete = {
"o", -- 'omnifunc'
}
vim.b.format = true -- See plugin/50-format.lua
|