nvim/config/after/ftplugin/python.lua
2023-01-03 22:05:09 -05:00

9 lines
155 B
Lua

local o = vim.o
local bo = vim.bo
bo.expandtab = true
bo.tabstop = 2
bo.shiftwidth = 2
bo.autoindent = true
bo.copyindent = true
vim.wo.colorcolumn = '80'