From b1029daeb5dc9d068d0e1d87f06ef6e0bfdc7b48 Mon Sep 17 00:00:00 2001 From: tiyn Date: Sun, 10 Dec 2023 17:40:19 +0100 Subject: [PATCH] nvim: added python settings --- .config/nvim/after/ftplugin/python.lua | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .config/nvim/after/ftplugin/python.lua diff --git a/.config/nvim/after/ftplugin/python.lua b/.config/nvim/after/ftplugin/python.lua new file mode 100644 index 0000000..3c53a56 --- /dev/null +++ b/.config/nvim/after/ftplugin/python.lua @@ -0,0 +1,3 @@ +vim.o.shiftwidth = 2 +vim.o.softtabstop = 2 +vim.o.textwidth = 100