| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- -- Create autogroups first
- local MZuninoGroup = vim.api.nvim_create_augroup("mzunino", {})
- local yank_group = vim.api.nvim_create_augroup("HighlightYank", {})
- local bigfile_group = vim.api.nvim_create_augroup("bigfile", {})
- -- Set bigfile size threshold
- vim.g.bigfile_size = 1024 * 1024 * 1.5 -- 1.5 MB
- -- Netrw diagnostic disable
- vim.api.nvim_create_autocmd("FileType", {
- pattern = "netrw",
- callback = function()
- vim.diagnostic.enable(false)
- end,
- })
- -- Template files
- vim.api.nvim_create_autocmd({ "BufRead", "BufNewFile" }, {
- pattern = "*.templ",
- command = "set filetype=templ",
- })
- -- Highlight on yank
- vim.api.nvim_create_autocmd("TextYankPost", {
- group = yank_group,
- pattern = "*",
- callback = function()
- vim.highlight.on_yank({
- higroup = "IncSearch",
- timeout = 40,
- })
- end,
- })
- -- Remove trailing whitespace on save
- vim.api.nvim_create_autocmd("BufWritePre", {
- group = MZuninoGroup,
- pattern = "*",
- command = [[%s/\s\+$//e]],
- })
- -- Bigfile detection
- vim.filetype.add({
- pattern = {
- [".*"] = {
- function(path, buf)
- return vim.bo[buf].filetype ~= "bigfile" and path and vim.fn.getfsize(path) > vim.g.bigfile_size and "bigfile"
- or nil
- end,
- },
- },
- })
- -- Bigfile handling
- vim.api.nvim_create_autocmd("FileType", {
- group = bigfile_group,
- pattern = "bigfile",
- callback = function(ev)
- vim.b.minianimate_disable = true
- vim.schedule(function()
- vim.bo[ev.buf].syntax = vim.filetype.match({ buf = ev.buf }) or ""
- end)
- end,
- })
|