fix: remove persistence plugin

This commit is contained in:
Stevan Freeborn
2025-01-27 21:55:42 -06:00
parent 6e3e956011
commit 8bf3269ea5
4 changed files with 65 additions and 80 deletions
+61 -53
View File
@@ -1,8 +1,8 @@
return {
"nvimdev/dashboard-nvim",
event = "VimEnter",
config = function()
local logo = [[
"nvimdev/dashboard-nvim",
event = "VimEnter",
config = function()
local logo = [[
@@ -14,13 +14,13 @@ return {
██║╚██╗██║██║ ██║ ██║ ██║██║╚██╗██║██╔══╝ ██║ ██╔══██║██╔══██╗██╔══╝ ╚════██║
██║ ╚████║╚██████╔╝ ╚██████╔╝██║ ╚████║███████╗ ╚██████╗██║ ██║██║ ██║███████╗███████║
╚═╝ ╚═══╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═══╝╚══════╝ ╚═════╝╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚══════╝
██╗ ██╗ ██████╗ ██████╗ ██╗ ██╗ ██╗ ██╗ █████╗ ██████╗ ██████╗ ███████╗██████╗
██║ ██║██╔═══██╗██╔══██╗██║ ██╔╝ ██║ ██║██╔══██╗██╔══██╗██╔══██╗██╔════╝██╔══██╗
██║ █╗ ██║██║ ██║██████╔╝█████╔╝ ███████║███████║██████╔╝██║ ██║█████╗ ██████╔╝
██║███╗██║██║ ██║██╔══██╗██╔═██╗ ██╔══██║██╔══██║██╔══██╗██║ ██║██╔══╝ ██╔══██╗
╚███╔███╔╝╚██████╔╝██║ ██║██║ ██╗ ██║ ██║██║ ██║██║ ██║██████╔╝███████╗██║ ██║
╚══╝╚══╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚══════╝╚═╝ ╚═╝
██╗ ██╗ ██████╗ ██████╗ ██╗ ██╗ ██╗ ██╗ █████╗ ██████╗ ██████╗ ███████╗██████╗
██║ ██║██╔═══██╗██╔══██╗██║ ██╔╝ ██║ ██║██╔══██╗██╔══██╗██╔══██╗██╔════╝██╔══██╗
██║ █╗ ██║██║ ██║██████╔╝█████╔╝ ███████║███████║██████╔╝██║ ██║█████╗ ██████╔╝
██║███╗██║██║ ██║██╔══██╗██╔═██╗ ██╔══██║██╔══██║██╔══██╗██║ ██║██╔══╝ ██╔══██╗
╚███╔███╔╝╚██████╔╝██║ ██║██║ ██╗ ██║ ██║██║ ██║██║ ██║██████╔╝███████╗██║ ██║
╚══╝╚══╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚══════╝╚═╝ ╚═╝
@@ -28,48 +28,56 @@ return {
]]
local opts = {
theme = "doom",
hide = {
statusline = false,
},
config = {
header = vim.split(logo, "\n"),
center = {
{ action = 'lua require("telescope.builtin").find_files()', desc = " Find File", icon = "", key = "f" },
{ action = "ene | startinsert", desc = " New File", icon = "", key = "n" },
{ action = 'lua require("telescope.builtin").oldfiles()', desc = " Recent Files", icon = "", key = "r" },
{ action = 'lua require("telescope.builtin").live_grep()', desc = " Find Text", icon = "", key = "g" },
{
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 " .. stats.loaded .. "/" .. stats.count .. " plugins in " .. ms .. "ms" }
end,
},
}
local opts = {
theme = "doom",
hide = {
statusline = false,
},
config = {
header = vim.split(logo, "\n"),
center = {
{
action = 'lua require("telescope.builtin").find_files()',
desc = " Find File",
icon = "",
key = "f",
},
{ action = "ene | startinsert", desc = " New File", icon = "", key = "n" },
{
action = 'lua require("telescope.builtin").oldfiles()',
desc = " Recent Files",
icon = "",
key = "r",
},
{
action = 'lua require("telescope.builtin").live_grep()',
desc = " Find Text",
icon = " ",
key = "g",
},
{ 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 " .. stats.loaded .. "/" .. stats.count .. " plugins in " .. ms .. "ms" }
end,
},
}
require("dashboard").setup(opts)
require("dashboard").setup(opts)
for _, button in ipairs(opts.config.center) do
button.desc = button.desc .. string.rep(" ", 43 - #button.desc)
button.key_format = " %s"
end
end,
for _, button in ipairs(opts.config.center) do
button.desc = button.desc .. string.rep(" ", 43 - #button.desc)
button.key_format = " %s"
end
end,
}