Make default startify bookmarks dynamic

Check for existing directories before adding
This commit is contained in:
ViViDboarder 2025-01-08 11:41:31 -08:00
parent ab094dc952
commit aa3cf08262
2 changed files with 27 additions and 7 deletions

View File

@ -209,6 +209,10 @@ return {
config = function()
require("utils").require_with_local("plugins.startify")
end,
dependencies = {
-- Plenary isn't used by startify, but it is used in my config
{ "https://github.com/nvim-lua/plenary.nvim" },
},
},
-- LSP

View File

@ -9,10 +9,26 @@ vim.g.startify_list_order = {
"sessions",
}
vim.g.startify_bookmarks = {
local function get_bookmarks()
local Path = require("plenary.path")
local paths = {
"~/Documents/Obsidian",
"~/workspace/vim-settings",
"~/workspace/shoestrap",
"~/.config/fish",
"~/Nextcloud/Notes",
}
}
local bookmarks = {}
for _, p in ipairs(paths) do
local path = Path:new(vim.fn.expand(p))
if path:exists() then
table.insert(bookmarks, p)
end
end
return bookmarks
end
vim.g.startify_bookmarks = get_bookmarks()