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.
19 lines
523 B
19 lines
523 B
-- 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 |
|
} |
|
)
|
|
|