9 lines
239 B
Lua
9 lines
239 B
Lua
vim.opt_local.expandtab = true
|
|
vim.opt_local.autoindent = true
|
|
vim.opt_local.smarttab = true
|
|
vim.opt_local.tabstop = 4
|
|
vim.opt_local.textwidth = 80
|
|
|
|
-- Set the indent after opening parenthesis
|
|
vim.g.pyindent_open_paren = vim.bo.shiftwidth
|