add snippets

This commit is contained in:
2025-10-22 12:08:05 +09:00
parent 3077f933e4
commit b518e48a50
4 changed files with 28 additions and 10 deletions

6
lua/config/commands.lua Normal file
View File

@@ -0,0 +1,6 @@
vim.api.nvim_create_user_command("Format", function()
vim.lsp.buf.format({
async = true,
timeout_ms = 2000,
})
end, {})