move line limit over by one for limit in python files

This commit is contained in:
JesseBot 2023-08-20 22:08:24 +02:00
parent 0e35f7d359
commit a024f0e468

View file

@ -14,8 +14,8 @@ vim.opt.numberwidth = 4
-- highlight current line
vim.opt.cursorline = true
-- highlighted column 80, only on python files, to keep lines shorter
vim.opt.colorcolumn = '80'
-- highlighted column 81, only on python files, to keep lines shorter
vim.opt.colorcolumn = '81'
-- vim.opt.termguicolors to enable highlight groups
vim.opt.termguicolors = true