summaryrefslogtreecommitdiff
path: root/dot_config/nvim/after/ftplugin/python.lua
blob: 446aeff5903dbc0a0bb697995e221ff4d013c13d (plain)
1
2
3
4
5
-- Colored columns at 72 and 88 are for line lengths, and are based on
-- Python conventions. Docstrings in Python should terminate at 72
-- characters, and 88 is the max line length for the Black formatter.
vim.opt_local.colorcolumn = { 72, 88 }