chore: update and expand mode indicators in types.lua

This commit is contained in:
2024-09-13 09:20:11 -04:00
parent b0d0340116
commit 1aef517eb6
4 changed files with 237 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
---@module "data.events"
--- This module defines the event tables for the Neovim configuration.
-- ╭─────────────────────────────────────────────────────────╮
-- │ Events │
-- ╰─────────────────────────────────────────────────────────╯
local M = {}
--- DEFAULT ---
M.default = "VeryLazy"
--- Alpha events
M.alpha = { "VimEnter" }
--- Auto Save events
M.autosave = { "InsertLeave", "TextChanged" }
--- Colorful Window Separators events
M.colorfulwinsep = { "WinLeave" }
--- Dashboard-Nvim events
M.dashboard = { "UIEnter" }
--- Dead Column
M.deadcolumn = { "BufEnter" }
--- Heirline events
M.heirline = { "UIEnter" }
--- Highlight Colors events
M.highlightcolor = { "BufReadPre" }
--- Mini.Align events
M.minialign = { "InsertEnter" }
--- Mini.SplitJoin events
M.minisplitjoin = { "InsertEnter" }
--- Discord Presence events
M.presence = { "BufReadPre" }
--- RipGrep Substitute events
M.ripsub = { "InsertEnter" }
--- SmoothCursor events
M.smoothcursor = { "BufEnter" }
return M