nvim/after/ftplugin/python.lua

8 lines
129 B
Lua

local o = vim.o
local bo = vim.bo
bo.expandtab = true
bo.tabstop = 2
bo.shiftwidth = 2
bo.autoindent = true
bo.copyindent = true