V2 of my Neovim configuration.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
-- Python configurations
|
|
|
|
|
|
|
|
vim.api.nvim_create_autocmd(
|
|
|
|
{
|
|
|
|
"BufNewFile",
|
|
|
|
"BufRead",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
pattern = "*.py",
|
|
|
|
callback = function()
|
|
|
|
local buf = vim.api.nvim_get_current_buf()
|
|
|
|
vim.api.nvim_buf_set_option(buf, "expandtab")
|
|
|
|
vim.api.nvim_buf_set_option(buf, "autoindent")
|
|
|
|
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, "shiftwidth", 4)
|
|
|
|
end
|
|
|
|
}
|
|
|
|
)
|