From 3a096699083b1242758aa47fb548cab67c86b062 Mon Sep 17 00:00:00 2001 From: rootiest Date: Thu, 29 Aug 2024 14:26:27 -0400 Subject: [PATCH] feat: add logo configuration with icon and color --- lua/data/types.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/lua/data/types.lua b/lua/data/types.lua index b534282..1331590 100644 --- a/lua/data/types.lua +++ b/lua/data/types.lua @@ -4,6 +4,11 @@ local M = {} +M.logo = { + icon = "", + color = "Special", +} + M.general = { -- Excluded buffer types buf = { @@ -27,6 +32,18 @@ M.general = { }, } +-- All modes for keymaps +M.all_modes = { + "n", + "i", + "v", + "x", + "s", + "o", + "c", + "t", +} + -- Filetypes for Alternate plugin M.alternate = { "cpp",