Browse Source

Update python so it works

master^2
Taylor Bockman 1 year ago
parent
commit
37cd64f97d
  1. 12
      lua/conf/langs/python.lua

12
lua/conf/langs/python.lua

@ -8,12 +8,12 @@ vim.api.nvim_create_autocmd(
{ {
pattern = "*.py", pattern = "*.py",
callback = function() callback = function()
local buf = vim.api.nvim_get_current_buf() local buf = vim.api.nvim_get_current_buf()
vim.api.nvim_buf_set_option(buf, "expandtab") vim.api.nvim_buf_set_option(buf, "expandtab", true)
vim.api.nvim_buf_set_option(buf, "autoindent") vim.api.nvim_buf_set_option(buf, "autoindent", true)
vim.api.nvim_buf_set_option(buf, "tabstop", 4) vim.api.nvim_buf_set_option(buf, "tabstop", 4)
vim.api.nvim_buf_set_option(buf, "softtabstop", 4) vim.api.nvim_buf_set_option(buf, "softtabstop", 4)
vim.api.nvim_buf_set_option(buf, "shiftwidth", 4) vim.api.nvim_buf_set_option(buf, "shiftwidth", 4)
end end
} }
) )

Loading…
Cancel
Save