Change the picker provider to fzf-lua and remove telescope plugin BREAKING CHANGE: Telescope is removed. Fzf-lua provides equivalent functionality. However, the remote-nvim plugin depended on Telescope so it has also been removed.
132 lines
3.5 KiB
Lua
132 lines
3.5 KiB
Lua
-- -----------------------------------------------------------------------------
|
|
-- -------------------------------- DASHBOARD ----------------------------------
|
|
-- -----------------------------------------------------------------------------
|
|
|
|
return {
|
|
-- Dashboard
|
|
"nvimdev/dashboard-nvim",
|
|
event = "UIEnter",
|
|
opts = function()
|
|
local logo_path = vim.fn.stdpath("config") .. "/logo/"
|
|
local height, width = vim.fn.winheight(0), vim.fn.winwidth(0)
|
|
local logo_file
|
|
|
|
if height >= 80 and width >= 80 then
|
|
logo_file = "rootiest.txt"
|
|
elseif height >= 48 and width >= 48 then
|
|
logo_file = "nvim.txt"
|
|
elseif width >= 100 then
|
|
logo_file = "long.txt"
|
|
elseif width >= 80 then
|
|
logo_file = "tall.txt"
|
|
elseif width >= 50 then
|
|
logo_file = "small.txt"
|
|
else
|
|
logo_file = "tiny.txt"
|
|
end
|
|
|
|
local logo_content = vim.fn.readfile(logo_path .. logo_file)
|
|
local LOGO = "\n\n" .. table.concat(logo_content, "\n") .. "\n\n"
|
|
|
|
local opts = {
|
|
theme = "doom",
|
|
hide = { statusline = false },
|
|
config = {
|
|
header = vim.split(LOGO, "\n"),
|
|
center = {
|
|
{
|
|
action = "lua LazyVim.pick()()",
|
|
desc = " Find File",
|
|
icon = " ",
|
|
key = "f",
|
|
},
|
|
{
|
|
action = "ene | startinsert",
|
|
desc = " New File",
|
|
icon = " ",
|
|
key = "n",
|
|
},
|
|
{
|
|
action = 'lua LazyVim.pick("oldfiles")()',
|
|
desc = " Recent Files",
|
|
icon = " ",
|
|
key = "r",
|
|
},
|
|
{
|
|
action = 'lua LazyVim.pick("live_grep")()',
|
|
desc = " Find Text",
|
|
icon = " ",
|
|
key = "g",
|
|
},
|
|
{
|
|
action = "LazyGit",
|
|
desc = " LazyGit",
|
|
icon = " ",
|
|
key = "z",
|
|
},
|
|
{
|
|
action = "lua LazyVim.pick.config_files()()",
|
|
desc = " Config",
|
|
icon = " ",
|
|
key = "c",
|
|
},
|
|
{
|
|
action = 'lua require("persistence").load()',
|
|
desc = " Restore Session",
|
|
icon = " ",
|
|
key = "s",
|
|
},
|
|
{
|
|
action = "Lazy",
|
|
desc = " Lazy",
|
|
icon = " ",
|
|
key = "l",
|
|
},
|
|
{
|
|
action = function()
|
|
vim.api.nvim_input("<cmd>qa<cr>")
|
|
end,
|
|
desc = " Quit",
|
|
icon = " ",
|
|
key = "q",
|
|
},
|
|
},
|
|
footer = function()
|
|
local stats = require("lazy").stats()
|
|
local ms = (math.floor(stats.startuptime * 100 + 0.5) / 100)
|
|
return {
|
|
-- "⚡ Neovim loaded "
|
|
" Neovim loaded "
|
|
.. stats.loaded
|
|
.. "/"
|
|
.. stats.count
|
|
.. " plugins in "
|
|
.. ms
|
|
.. "ms",
|
|
}
|
|
end,
|
|
},
|
|
}
|
|
|
|
for _, button in ipairs(opts.config.center) do
|
|
button.desc = button.desc .. string.rep(" ", 43 - #button.desc)
|
|
button.key_format = " %s"
|
|
end
|
|
|
|
-- Open dashboard after closing lazy
|
|
if vim.o.filetype == "lazy" then
|
|
vim.api.nvim_create_autocmd("WinClosed", {
|
|
pattern = tostring(vim.api.nvim_get_current_win()),
|
|
once = true,
|
|
callback = function()
|
|
vim.schedule(function()
|
|
vim.api.nvim_exec_autocmds("UIEnter", { group = "dashboard" })
|
|
end)
|
|
end,
|
|
})
|
|
end
|
|
|
|
return opts
|
|
end,
|
|
}
|