Restore original python indent system to fix problems

This commit is contained in:
Evie Litherland-Smith 2023-03-06 16:26:34 +00:00
parent 378ef28121
commit ff65accca3
2 changed files with 6 additions and 5 deletions

View file

@ -18,6 +18,12 @@ vim.opt.splitright = true
-- Global
vim.g.python3_host_prog = vim.fn.stdpath "config" .. "/.venv/bin/python"
vim.g.python_indent = {
open_paren = "shiftwidth()",
nested_paren = "shiftwidth()",
continue = "shiftwidth()",
closed_paren_align_last_line = "v:false",
}
vim.g.loaded_ruby_provider = 0
vim.g.loaded_perl_provider = 0

View file

@ -1,5 +0,0 @@
return {
'Vimjas/vim-python-pep8-indent',
lazy = true,
event = { "BufReadPre", "BufNewFile" },
}