mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 21:32:13 +02:00
10 lines
188 B
Lua
10 lines
188 B
Lua
vim.api.nvim_create_autocmd("FileType", {
|
|
pattern = "php",
|
|
callback = function()
|
|
vim.bo.tabstop = 4
|
|
vim.bo.softtabstop = 4
|
|
vim.bo.shiftwidth = 4
|
|
vim.bo.expandtab = true
|
|
end,
|
|
})
|