Skip to content

Commit

Permalink
clean(nvdash): no need to use nvdash integration
Browse files Browse the repository at this point in the history
  • Loading branch information
siduck committed Oct 28, 2024
1 parent ad4ac7b commit ba40afc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions lua/nvchad/nvdash/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions lua/nvconfig.lua
Original file line number Diff line number Diff line change
Expand Up @@ -66,19 +66,19 @@ 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()
local stats = require("lazy").stats()
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 },
},
},

Expand Down

0 comments on commit ba40afc

Please sign in to comment.