python indent

This commit is contained in:
LuKe Tidd 2022-07-04 15:49:20 -04:00
parent 780d341cec
commit 398b0dace5

View File

@ -1,7 +1,8 @@
local o = vim.o
local bo = vim.bo
bo.expandtab = false
bo.tabstop = 8
bo.shiftwidth = 8
bo.expandtab = true
bo.tabstop = 2
bo.shiftwidth = 2
bo.autoindent = true
bo.copyindent = true
vim.wo.colorcolumn = '80'