feat(config): various config updates

Packaged updates to configuration.
This commit is contained in:
2025-08-23 11:52:26 -04:00
parent 00b23548c3
commit 4545e18a68
20 changed files with 564 additions and 107 deletions
+53 -28
View File
@@ -1,34 +1,59 @@
return {
'epwalsh/obsidian.nvim',
version = '*', -- recommended, use latest release instead of latest commit
lazy = true,
event = {
'BufReadPre ' .. vim.fn.expand('~' .. '/vaults/rootiest/*.md'),
'BufNewFile ' .. vim.fn.expand('~' .. '/vaults/rootiest/*.md'),
{
'obsidian-nvim/obsidian.nvim',
version = '*', -- recommended, use latest release instead of latest commit
lazy = true,
event = {
'BufReadPre ' .. vim.fn.expand('~' .. '/vaults/Rootiest Notes/*.md'),
'BufNewFile ' .. vim.fn.expand('~' .. '/vaults/Rootiest Notes/*.md'),
},
cmd = 'Obsidian',
dependencies = {
-- Required.
'nvim-lua/plenary.nvim',
},
opts = {
completion = {
nvim_cmp = false,
blink = true,
min_chars = 2,
},
picker = {
name = 'snacks.pick',
},
workspaces = {
{
name = 'Rootiest Notes',
path = '~/vaults/Rootiest Notes',
},
},
templates = {
folder = 'templates',
date_format = '%Y-%m-%d-%a',
time_format = '%H:%M',
substitutions = {
yesterday = function()
return os.date('%Y-%m-%d', os.time() - 86400)
end,
},
},
-- ui = {
-- enable = false,
-- },
},
},
dependencies = {
-- Required.
'nvim-lua/plenary.nvim',
},
opts = {
workspaces = {
{
name = 'rootiest',
path = '~/vaults/rootiest',
{
'arakkkkk/kanban.nvim',
ft = 'markdown',
opts = {
markdown = {
description_folder = './tasks/', -- Path to save the file corresponding to the task.
list_head = '## ',
},
},
templates = {
folder = 'templates',
date_format = '%Y-%m-%d-%a',
time_format = '%H:%M',
substitutions = {
yesterday = function()
return os.date('%Y-%m-%d', os.time() - 86400)
end,
},
},
ui = {
enable = false,
},
},
{
'marcocofano/excalidraw.nvim',
lazy = false,
},
}