feat: add more autocommands

This commit is contained in:
Arman.H 2022-05-04 09:55:04 +04:30 committed by siduck
parent cb86c87e88
commit 1d945d19b4

View file

@ -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,
-- })