From 4896968bd3f1826bbfaff597ccfe3c9c4f8f9470 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Wed, 6 Mar 2024 19:24:47 +0000 Subject: [PATCH] Add more python plugin paranoia from work. --- private_dot_config/nvim/after/ftplugin/python.vim | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/private_dot_config/nvim/after/ftplugin/python.vim b/private_dot_config/nvim/after/ftplugin/python.vim index 534a0c0..903616f 100644 --- a/private_dot_config/nvim/after/ftplugin/python.vim +++ b/private_dot_config/nvim/after/ftplugin/python.vim @@ -1,5 +1,9 @@ -set nu -set noexpandtab -set nosmarttab -set tabstop=4 set indentexpr= +set noautoindent +set nocindent +set noexpandtab +set nosmartindent +set nosmarttab +set nu +set tabstop=4 +filetype indent off