Compare commits

...

2 Commits

Author SHA1 Message Date
0e3ceba316
feat(nvim): add more paths for org agenda files
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m5s
2024-07-06 10:53:15 -05:00
2abf5e5060
feat(nvim): install ppd.nvim 2024-07-06 10:53:06 -05:00
2 changed files with 11 additions and 0 deletions

View File

@ -19,6 +19,7 @@ return {
},
org_agenda_files = {
"~/Git/College/**/*",
"~/Git/Projects/**/*",
"~/Notes/**/*",
vim.fn.stdpath("config") .. "/**/*",
},

View File

@ -0,0 +1,10 @@
return {
{
"PriceHiller/ppd.nvim",
config = function()
require("ppd").setup()
vim.cmd.cnoreabbrev("pushd", "Pushd")
vim.cmd.cnoreabbrev("popd", "Popd")
end,
},
}