mirror of
https://github.com/ViViDboarder/vim-settings.git
synced 2025-01-09 23:17:38 +00:00
Make default startify bookmarks dynamic
Check for existing directories before adding
This commit is contained in:
parent
ab094dc952
commit
aa3cf08262
@ -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
|
||||
|
@ -9,10 +9,26 @@ vim.g.startify_list_order = {
|
||||
"sessions",
|
||||
}
|
||||
|
||||
vim.g.startify_bookmarks = {
|
||||
"~/Documents/Obsidian",
|
||||
"~/workspace/vim-settings",
|
||||
"~/workspace/shoestrap",
|
||||
"~/.config/fish",
|
||||
"~/Nextcloud/Notes",
|
||||
}
|
||||
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()
|
||||
|
Loading…
Reference in New Issue
Block a user