From 398b0dace53fd26f06d83e28fc3194bd1f36cc60 Mon Sep 17 00:00:00 2001 From: LuKe Tidd Date: Mon, 4 Jul 2022 15:49:20 -0400 Subject: [PATCH] python indent --- after/ftplugin/python.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/after/ftplugin/python.lua b/after/ftplugin/python.lua index 8c7053d..9f2bf4f 100644 --- a/after/ftplugin/python.lua +++ b/after/ftplugin/python.lua @@ -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'