diff --git a/lua/nvchad/nvdash/init.lua b/lua/nvchad/nvdash/init.lua index 59eec385..1a7ca35a 100644 --- a/lua/nvchad/nvdash/init.lua +++ b/lua/nvchad/nvdash/init.lua @@ -2,8 +2,9 @@ local M = {} local api = vim.api local fn = vim.fn local strw = api.nvim_strwidth - -dofile(vim.g.base46_cache .. "nvdash") +api.nvim_set_hl(0, "NvdashAscii", { link = "FloatBorder" }) +api.nvim_set_hl(0, "NvdashButtons", { link = "Comment" }) +api.nvim_set_hl(0, "NvdashFooter", { link = "Removed" }) local opts = require("nvconfig").nvdash diff --git a/lua/nvconfig.lua b/lua/nvconfig.lua index 5cc55584..ffae39ba 100644 --- a/lua/nvconfig.lua +++ b/lua/nvconfig.lua @@ -66,7 +66,7 @@ local options = { { txt = "󱥚 Themes", keys = "th", cmd = ":lua require('nvchad.themes').open()" }, { txt = " Mappings", keys = "ch", cmd = "NvCheatsheet" }, - { txt = "─", hl = "NvDashLazy", no_gap = true, rep = true }, + { txt = "─", hl = "NvDashFooter", no_gap = true, rep = true }, { txt = function() @@ -74,11 +74,11 @@ local options = { local ms = math.floor(stats.startuptime) .. " ms" return " Loaded " .. stats.loaded .. "/" .. stats.count .. " plugins in " .. ms end, - hl = "NvDashLazy", + hl = "NvDashFooter", no_gap = true, }, - { txt = "─", hl = "NvDashLazy", no_gap = true, rep = true }, + { txt = "─", hl = "NvDashFooter", no_gap = true, rep = true }, }, },