d16ffabcfd
first commit of Refactor handle require errors move config from other places to proper files don't create a pseudo config function for no reason https://github.com/siduck76/NvChad/pull/156#issuecomment-881453546
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 s l"}, command = "SessionLoad"}
|
|
}
|
|
|
|
g.dashboard_custom_footer = {
|
|
" ",
|
|
-- "NvChad Loaded " .. plugins_count .. " plugins",
|
|
"NvChad v0.5"
|
|
}
|