Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
neovim-config/lua/user/alpha.lua

57 lines
2.2 KiB
Lua
Raw Normal View History

2022-07-09 13:10:31 +00:00
local status_ok, alpha = pcall(require, "alpha")
if not status_ok then
return
end
local dashboard = require("alpha.themes.dashboard")
dashboard.section.header.val = {
" ▟▙",
" ▝▘",
"██▃▅▇█▆▖ ▗▟████▙▖ ▄████▄ ██▄ ▄██ ██ ▗▟█▆▄▄▆█▙▖",
"██▛▔ ▝██ ██▄▄▄▄██ ██▛▔▔▜██ ▝██ ██▘ ██ ██▛▜██▛▜██",
"██ ██ ██▀▀▀▀▀▘ ██▖ ▗██ ▜█▙▟█▛ ██ ██ ██ ██",
"██ ██ ▜█▙▄▄▄▟▊ ▀██▙▟██▀ ▝████▘ ██ ██ ██ ██",
"▀▀ ▀▀ ▝▀▀▀▀▀ ▀▀▀▀ ▀▀ ▀▀ ▀▀ ▀▀ ▀▀",
}
dashboard.section.buttons.val = {
dashboard.button("f", " Find file", ":Telescope find_files <CR>"),
dashboard.button("e", " New file", ":ene <BAR> startinsert <CR>"),
dashboard.button("r", " Recently used files", ":Telescope oldfiles <CR>"),
dashboard.button("t", " Find text", ":Telescope live_grep <CR>"),
dashboard.button("c", " Configuration", ":e ~/.config/nvim/init.lua <CR>"),
dashboard.button("q", " Quit Neovim", ":qa<CR>"),
}
local function footer()
2022-07-18 08:00:09 +00:00
-- Number of plugins
local total_plugins = #vim.tbl_keys(packer_plugins)
local datetime = os.date("%d-%m-%Y %H:%M:%S")
local plugins_text = ""
.. total_plugins
.. " plugins"
.. "  v"
.. vim.version().major
.. "."
.. vim.version().minor
.. "."
.. vim.version().patch
.. ""
.. datetime
-- Quote
local fortune = require("alpha.fortune")
local quote = table.concat(fortune(), "\n")
return "\n" .. plugins_text .. "\n" .. quote .. "\n" .. " I use Arch BTW"
2022-07-09 13:10:31 +00:00
end
dashboard.section.footer.val = footer()
2022-07-18 08:00:09 +00:00
dashboard.section.footer.opts.hl = "Constant"
2022-07-09 13:10:31 +00:00
dashboard.section.header.opts.hl = "Include"
2022-07-18 08:00:09 +00:00
dashboard.section.buttons.opts.hl = "Function"
dashboard.section.buttons.opts.hl_shortcut = "Type"
2022-07-09 13:10:31 +00:00
dashboard.opts.opts.noautocmd = true
2022-07-18 08:00:09 +00:00
2022-07-09 13:10:31 +00:00
alpha.setup(dashboard.opts)