diff --git a/lua/core/autocmds.lua b/lua/core/autocmds.lua index 930dac0..12c5ed3 100644 --- a/lua/core/autocmds.lua +++ b/lua/core/autocmds.lua @@ -41,3 +41,18 @@ local autocmd = vim.api.nvim_create_autocmd -- vim.opt_local.softtabstop = 4 -- end, -- }) + +-- Highlight yanked text +-- autocmd("TextYankPost", { +-- callback = function() +-- vim.highlight.on_yank { higroup = "Visual", timeout = 200 } +-- end, +-- }) + +-- Enable spellchecking in markdown, text and gitcommit files +-- autocmd("FileType", { +-- pattern = { "gitcommit", "markdown", "text" }, +-- callback = function() +-- vim.opt_local.spell = true +-- end, +-- })