1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/dashboard.lua

15 lines
254 B
Lua
Raw Normal View History

2022-12-27 20:45:43 +01:00
local env = require("my.helpers.env")
2022-07-19 20:19:36 +02:00
2022-12-27 20:45:43 +01:00
local M = {
"glepnir/dashboard-nvim",
lazy = false,
cond = env.vscode.not_active() and env.firenvim.not_active(),
}
function M.config()
2022-07-19 20:19:36 +02:00
local db = require("dashboard")
2022-07-27 10:00:25 +02:00
db.custom_header = {}
2022-07-19 20:19:36 +02:00
end
return M