Skip to content

Instantly share code, notes, and snippets.

View be4zad's full-sized avatar
🎯
Focusing

be4zad

🎯
Focusing
  • 06:12 (UTC -12:00)
View GitHub Profile
@be4zad
be4zad / gist:b662cc53b99be240dec4ba4f53c5003c
Created September 1, 2025 17:14
Disabling autoformat in LazyVim
vim.api.nvim_create_autocmd("FileType", {
pattern = { "html", "javascript", "c", "php", "php", "markdown", "sql", "java" },
callback = function()
vim.b.autoformat = false
end,
})