mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-04 12:00:29 +00:00
41 lines
2.1 KiB
Lua
41 lines
2.1 KiB
Lua
local g = vim.g
|
|
local fn = vim.fn
|
|
|
|
local plugins_count = fn.len(fn.globpath("~/.local/share/nvim/site/pack/packer/start", "*", 0, 1))
|
|
|
|
g.dashboard_disable_at_vimenter = 1 -- dashboard is disabled by default
|
|
g.dashboard_disable_statusline = 1
|
|
g.dashboard_default_executive = "telescope"
|
|
g.dashboard_custom_header = {
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ⣴⣶⣤⡤⠦⣤⣀⣤⠆ ⣈⣭⣿⣶⣿⣦⣼⣆ ",
|
|
" ⠉⠻⢿⣿⠿⣿⣿⣶⣦⠤⠄⡠⢾⣿⣿⡿⠋⠉⠉⠻⣿⣿⡛⣦ ",
|
|
" ⠈⢿⣿⣟⠦ ⣾⣿⣿⣷ ⠻⠿⢿⣿⣧⣄ ",
|
|
" ⣸⣿⣿⢧ ⢻⠻⣿⣿⣷⣄⣀⠄⠢⣀⡀⠈⠙⠿⠄ ",
|
|
" ⢠⣿⣿⣿⠈ ⣻⣿⣿⣿⣿⣿⣿⣿⣛⣳⣤⣀⣀ ",
|
|
" ⢠⣧⣶⣥⡤⢄ ⣸⣿⣿⠘ ⢀⣴⣿⣿⡿⠛⣿⣿⣧⠈⢿⠿⠟⠛⠻⠿⠄ ",
|
|
" ⣰⣿⣿⠛⠻⣿⣿⡦⢹⣿⣷ ⢊⣿⣿⡏ ⢸⣿⣿⡇ ⢀⣠⣄⣾⠄ ",
|
|
" ⣠⣿⠿⠛ ⢀⣿⣿⣷⠘⢿⣿⣦⡀ ⢸⢿⣿⣿⣄ ⣸⣿⣿⡇⣪⣿⡿⠿⣿⣷⡄ ",
|
|
" ⠙⠃ ⣼⣿⡟ ⠈⠻⣿⣿⣦⣌⡇⠻⣿⣿⣷⣿⣿⣿ ⣿⣿⡇ ⠛⠻⢷⣄ ",
|
|
" ⢻⣿⣿⣄ ⠈⠻⣿⣿⣿⣷⣿⣿⣿⣿⣿⡟ ⠫⢿⣿⡆ ",
|
|
" ⠻⣿⣿⣿⣿⣶⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿⡟⢀⣀⣤⣾⡿⠃ ",
|
|
" ",
|
|
}
|
|
|
|
g.dashboard_custom_section = {
|
|
a = { description = { " Find File SPC f f" }, command = "Telescope find_files" },
|
|
b = { description = { " Recents SPC f o" }, command = "Telescope oldfiles" },
|
|
c = { description = { " Find Word SPC f w" }, command = "Telescope live_grep" },
|
|
d = { description = { "洛 New File SPC f n" }, command = "DashboardNewFile" },
|
|
e = { description = { " Bookmarks SPC b m" }, command = "Telescope marks" },
|
|
f = { description = { " Load Last Session SPC l " }, command = "SessionLoad" },
|
|
}
|
|
|
|
g.dashboard_custom_footer = {
|
|
" ",
|
|
-- "NvChad Loaded " .. plugins_count .. " plugins",
|
|
"NvChad v0.5",
|
|
}
|