Restore original python indent system to fix problems
This commit is contained in:
parent
378ef28121
commit
ff65accca3
|
@ -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
|
||||
|
||||
|
|
|
@ -1,5 +0,0 @@
|
|||
return {
|
||||
'Vimjas/vim-python-pep8-indent',
|
||||
lazy = true,
|
||||
event = { "BufReadPre", "BufNewFile" },
|
||||
}
|
Loading…
Reference in a new issue