2022-02-20 07:14:43 +01:00
|
|
|
local present, alpha = pcall(require, "alpha")
|
|
|
|
|
|
|
|
if not present then
|
2022-07-22 18:00:00 +02:00
|
|
|
return
|
2022-02-20 07:14:43 +01:00
|
|
|
end
|
|
|
|
|
2022-06-14 14:06:27 +02:00
|
|
|
require("base46").load_highlight "alpha"
|
|
|
|
|
2022-02-20 07:14:43 +01:00
|
|
|
local function button(sc, txt, keybind)
|
2022-07-22 18:00:00 +02:00
|
|
|
local sc_ = sc:gsub("%s", ""):gsub("SPC", "<leader>")
|
2022-02-20 07:14:43 +01:00
|
|
|
|
2022-07-22 18:00:00 +02:00
|
|
|
local opts = {
|
|
|
|
position = "center",
|
|
|
|
text = txt,
|
|
|
|
shortcut = sc,
|
|
|
|
cursor = 5,
|
|
|
|
width = 36,
|
|
|
|
align_shortcut = "right",
|
|
|
|
hl = "AlphaButtons",
|
|
|
|
}
|
2022-02-20 07:14:43 +01:00
|
|
|
|
2022-07-22 18:00:00 +02:00
|
|
|
if keybind then
|
|
|
|
opts.keymap = { "n", sc_, keybind, { noremap = true, silent = true } }
|
|
|
|
end
|
2022-02-20 07:14:43 +01:00
|
|
|
|
2022-07-22 18:00:00 +02:00
|
|
|
return {
|
|
|
|
type = "button",
|
|
|
|
val = txt,
|
|
|
|
on_press = function()
|
2022-08-17 21:01:31 +02:00
|
|
|
local key = vim.api.nvim_replace_termcodes(sc_, true, false, true) or ""
|
2022-07-22 18:00:00 +02:00
|
|
|
vim.api.nvim_feedkeys(key, "normal", false)
|
|
|
|
end,
|
|
|
|
opts = opts,
|
|
|
|
}
|
2022-02-20 07:14:43 +01:00
|
|
|
end
|
|
|
|
|
2022-08-15 16:52:52 +02:00
|
|
|
-- dynamic header padding
|
|
|
|
local fn = vim.fn
|
|
|
|
local marginTopPercent = 0.3
|
|
|
|
local headerPadding = fn.max { 2, fn.floor(fn.winheight(0) * marginTopPercent) }
|
|
|
|
|
2022-07-30 05:12:18 +02:00
|
|
|
local options = {
|
2022-03-19 05:19:54 +01:00
|
|
|
|
2022-07-30 05:12:18 +02:00
|
|
|
header = {
|
|
|
|
type = "text",
|
|
|
|
val = {
|
|
|
|
" ⣴⣶⣤⡤⠦⣤⣀⣤⠆ ⣈⣭⣿⣶⣿⣦⣼⣆ ",
|
|
|
|
" ⠉⠻⢿⣿⠿⣿⣿⣶⣦⠤⠄⡠⢾⣿⣿⡿⠋⠉⠉⠻⣿⣿⡛⣦ ",
|
|
|
|
" ⠈⢿⣿⣟⠦ ⣾⣿⣿⣷ ⠻⠿⢿⣿⣧⣄ ",
|
|
|
|
" ⣸⣿⣿⢧ ⢻⠻⣿⣿⣷⣄⣀⠄⠢⣀⡀⠈⠙⠿⠄ ",
|
|
|
|
" ⢠⣿⣿⣿⠈ ⣻⣿⣿⣿⣿⣿⣿⣿⣛⣳⣤⣀⣀ ",
|
|
|
|
" ⢠⣧⣶⣥⡤⢄ ⣸⣿⣿⠘ ⢀⣴⣿⣿⡿⠛⣿⣿⣧⠈⢿⠿⠟⠛⠻⠿⠄ ",
|
|
|
|
" ⣰⣿⣿⠛⠻⣿⣿⡦⢹⣿⣷ ⢊⣿⣿⡏ ⢸⣿⣿⡇ ⢀⣠⣄⣾⠄ ",
|
|
|
|
" ⣠⣿⠿⠛ ⢀⣿⣿⣷⠘⢿⣿⣦⡀ ⢸⢿⣿⣿⣄ ⣸⣿⣿⡇⣪⣿⡿⠿⣿⣷⡄ ",
|
|
|
|
" ⠙⠃ ⣼⣿⡟ ⠈⠻⣿⣿⣦⣌⡇⠻⣿⣿⣷⣿⣿⣿ ⣿⣿⡇ ⠛⠻⢷⣄ ",
|
|
|
|
" ⢻⣿⣿⣄ ⠈⠻⣿⣿⣿⣷⣿⣿⣿⣿⣿⡟ ⠫⢿⣿⡆ ",
|
|
|
|
" ⠻⣿⣿⣿⣿⣶⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿⡟⢀⣀⣤⣾⡿⠃ ",
|
|
|
|
},
|
|
|
|
opts = {
|
|
|
|
position = "center",
|
|
|
|
hl = "AlphaHeader",
|
|
|
|
},
|
2022-07-22 18:00:00 +02:00
|
|
|
},
|
2022-03-19 05:19:54 +01:00
|
|
|
|
2022-07-30 05:12:18 +02:00
|
|
|
buttons = {
|
|
|
|
type = "group",
|
|
|
|
val = {
|
|
|
|
button("SPC f f", " Find File ", ":Telescope find_files<CR>"),
|
|
|
|
button("SPC f o", " Recent File ", ":Telescope oldfiles<CR>"),
|
|
|
|
button("SPC f w", " Find Word ", ":Telescope live_grep<CR>"),
|
|
|
|
button("SPC b m", " Bookmarks ", ":Telescope marks<CR>"),
|
|
|
|
button("SPC t h", " Themes ", ":Telescope themes<CR>"),
|
|
|
|
button("SPC e s", " Settings", ":e $MYVIMRC | :cd %:p:h <CR>"),
|
|
|
|
},
|
|
|
|
opts = {
|
|
|
|
spacing = 1,
|
|
|
|
},
|
2022-07-22 18:00:00 +02:00
|
|
|
},
|
2022-08-15 16:52:52 +02:00
|
|
|
|
|
|
|
headerPaddingTop = { type = "padding", val = headerPadding },
|
|
|
|
headerPaddingBottom = { type = "padding", val = 2 },
|
2022-02-20 07:14:43 +01:00
|
|
|
}
|
|
|
|
|
2022-05-29 12:37:47 +02:00
|
|
|
options = require("core.utils").load_override(options, "goolord/alpha-nvim")
|
2022-03-20 03:00:30 +01:00
|
|
|
|
2022-04-27 17:42:28 +02:00
|
|
|
alpha.setup {
|
2022-07-22 18:00:00 +02:00
|
|
|
layout = {
|
2022-08-15 16:52:52 +02:00
|
|
|
options.headerPaddingTop,
|
2022-07-22 18:00:00 +02:00
|
|
|
options.header,
|
2022-08-15 16:52:52 +02:00
|
|
|
options.headerPaddingBottom,
|
2022-07-22 18:00:00 +02:00
|
|
|
options.buttons,
|
|
|
|
},
|
|
|
|
opts = {},
|
2022-04-27 17:42:28 +02:00
|
|
|
}
|
2022-08-21 13:56:34 +02:00
|
|
|
|
|
|
|
-- Disable statusline in dashboard
|
|
|
|
vim.api.nvim_create_autocmd("FileType", {
|
|
|
|
pattern = "alpha",
|
|
|
|
callback = function()
|
|
|
|
-- store current statusline value and use that
|
|
|
|
local old_laststatus = vim.opt.laststatus
|
|
|
|
vim.api.nvim_create_autocmd("BufUnload", {
|
|
|
|
buffer = 0,
|
|
|
|
callback = function()
|
|
|
|
vim.opt.laststatus = old_laststatus
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
vim.opt.laststatus = 0
|
|
|
|
end,
|
|
|
|
})
|