43 lines
2.1 KiB
Lua
43 lines
2.1 KiB
Lua
local M = {}
|
|
|
|
M.config = function()
|
|
local g = vim.g
|
|
|
|
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 s l"}, command = "SessionLoad"}
|
|
}
|
|
|
|
g.dashboard_custom_footer = {
|
|
" ",
|
|
"NvChad v0.5"
|
|
}
|
|
end
|
|
|
|
return M
|