1
Fork 0

Added so much stuff

This commit is contained in:
Matei Adriel 2023-01-10 02:38:06 +01:00
parent 1b17dc6cf3
commit 71f7586a61
100 changed files with 4404 additions and 33 deletions
dotfiles/neovim/lua/my/plugins

View file

@ -0,0 +1,14 @@
local env = require("my.helpers.env")
local M = {
"glepnir/dashboard-nvim",
lazy = false,
cond = env.vscode.not_active() and env.firenvim.not_active(),
}
function M.config()
local db = require("dashboard")
db.custom_header = {}
end
return M