Files
init.lua/after/ftplugin/cs.lua
T
2026-06-28 13:50:26 +02:00

8 lines
203 B
Lua

vim.opt_local.expandtab = true
vim.opt_local.shiftwidth = 4
vim.opt_local.tabstop = 4
vim.keymap.set("n", "<leader>f", function()
require("conform").format({ async = true })
end, { buffer = true })