50 lines
2.6 KiB
Lua
Executable File
50 lines
2.6 KiB
Lua
Executable File
local g = vim.g
|
|
local fn = vim.fn
|
|
|
|
if vim.fn.has("win32") == 1 then
|
|
plugins_count = fn.len(fn.globpath("~/AppData/Local/nvim-data/site/pack/packer/start", "*", 0, 1))
|
|
else
|
|
plugins_count = fn.len(fn.globpath("~/.local/share/nvim/site/pack/packer/start", "*", 0, 1))
|
|
end
|
|
|
|
g.dashboard_disable_statusline = 1
|
|
g.dashboard_default_executive = "telescope"
|
|
|
|
g.dashboard_custom_header = {
|
|
" ",
|
|
" ",
|
|
" ",
|
|
" ⣴⣶⣤⡤⠦⣤⣀⣤⠆ ⣈⣭⣿⣶⣿⣦⣼⣆ ",
|
|
" ⠉⠻⢿⣿⠿⣿⣿⣶⣦⠤⠄⡠⢾⣿⣿⡿⠋⠉⠉⠻⣿⣿⡛⣦ ",
|
|
" ⠈⢿⣿⣟⠦ ⣾⣿⣿⣷ ⠻⠿⢿⣿⣧⣄ ",
|
|
" ⣸⣿⣿⢧ ⢻⠻⣿⣿⣷⣄⣀⠄⠢⣀⡀⠈⠙⠿⠄ ",
|
|
" ⢠⣿⣿⣿⠈ ⣻⣿⣿⣿⣿⣿⣿⣿⣛⣳⣤⣀⣀ ",
|
|
" ⢠⣧⣶⣥⡤⢄ ⣸⣿⣿⠘ ⢀⣴⣿⣿⡿⠛⣿⣿⣧⠈⢿⠿⠟⠛⠻⠿⠄ ",
|
|
" ⣰⣿⣿⠛⠻⣿⣿⡦⢹⣿⣷ ⢊⣿⣿⡏ ⢸⣿⣿⡇ ⢀⣠⣄⣾⠄ ",
|
|
" ⣠⣿⠿⠛ ⢀⣿⣿⣷⠘⢿⣿⣦⡀ ⢸⢿⣿⣿⣄ ⣸⣿⣿⡇⣪⣿⡿⠿⣿⣷⡄ ",
|
|
" ⠙⠃ ⣼⣿⡟ ⠈⠻⣿⣿⣦⣌⡇⠻⣿⣿⣷⣿⣿⣿ ⣿⣿⡇ ⠛⠻⢷⣄ ",
|
|
" ⢻⣿⣿⣄ ⠈⠻⣿⣿⣿⣷⣿⣿⣿⣿⣿⡟ ⠫⢿⣿⡆ ",
|
|
" ⠻⣿⣿⣿⣿⣶⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿⡟⢀⣀⣤⣾⡿⠃ ",
|
|
" ",
|
|
}
|
|
|
|
g.dashboard_custom_section = {
|
|
a = { description = { " Find File SPC t f" }, command = "Telescope find_files" },
|
|
b = { description = { " Find directory SPC t d" }, command = "Telescope find_directories" },
|
|
c = { description = { " Recents SPC t o" }, command = "Telescope oldfiles" },
|
|
d = { description = { " Find Word SPC t w" }, command = "Telescope live_grep" },
|
|
e = { description = { "洛 New File SPC f n" }, command = "DashboardNewFile" },
|
|
f = { description = { " Bookmarks SPC b m" }, command = "Telescope marks" },
|
|
g = { description = { " Load Last Session SPC s l" }, command = "SessionLoad" }
|
|
}
|
|
|
|
g.dashboard_custom_footer = {
|
|
" ",
|
|
"Loaded " .. plugins_count .. " plugins! ",
|
|
"Neovim"
|
|
}
|
|
|
|
-- Disable statusline and cursorline in dashboard.
|
|
vim.cmd("autocmd BufEnter * if &ft is \"dashboard\" | set laststatus=0 | else | set laststatus=2 | endif")
|
|
vim.cmd("autocmd BufEnter * if &ft is \"dashboard\" | set nocursorline | endif")
|