5 files changed,
0 insertions(+),
54 deletions(-)
Author:
Oleksandr Smirnov
olexsmir@gmail.com
Committed at:
2025-05-21 23:57:54 +0300
Parent:
f6e4840
jump to
| M | init.lua |
| M | lazy-lock.json |
| D | lua/hidden/.gitignore |
| D | lua/hidden/init.lua |
| M | lua/plugins/orgmode.lua |
M
init.lua
@@ -3,4 +3,3 @@ require "core.lazy"
require "core.keymaps" require "core.autocmd" require "core.lsp" -require "hidden"
M
lazy-lock.json
@@ -38,7 +38,6 @@ "nvim-ts-context-commentstring": { "branch": "main", "commit": "1b212c2eee76d787bbea6aa5e92a2b534e7b4f8f" },
"nvim-web-devicons": { "branch": "master", "commit": "5b9067899ee6a2538891573500e8fd6ff008440f" }, "oil.nvim": { "branch": "master", "commit": "975a77cce3c8cb742bc1b3629f4328f5ca977dad" }, "org-bullets.nvim": { "branch": "main", "commit": "21437cfa99c70f2c18977bffd423f912a7b832ea" }, - "org-roam.nvim": { "branch": "main", "commit": "5ff1c9b0d89ac4a142abe3723e535fb127a516e4" }, "orgmode": { "branch": "master", "commit": "b0c9896bfcfb4815ea53f73a7da1a62c5c28efa3" }, "plenary.nvim": { "branch": "master", "commit": "50012918b2fc8357b87cff2a7f7f0446e47da174" }, "schemastore.nvim": { "branch": "main", "commit": "ba7bad63cb96dae5a82e48310beada18e8eeafe5" },
M
lua/plugins/orgmode.lua
@@ -1,5 +1,4 @@
local u = require "core.utils" -local h = require("hidden").org local orgdir = "~/org/" ---@param p string@@ -45,36 +44,6 @@ { "<leader>oa", action "agenda.prompt" },
}, dependencies = { { "akinsho/org-bullets.nvim", config = true }, - { - "chipsenkbeil/org-roam.nvim", - version = false, - keys = { "<leader>r" }, - ---@module "org-roam" - ---@type org-roam.config.Data - opts = { - directory = orgpath("roam", true), - org_files = { orgpath "refile", orgpath "personal" }, - bindings = { - prefix = "<leader>r", - find_node = "<prefix>s", - }, - templates = h.templates { - n = { - description = "Note", - template = "%?", - target = "%<%Y%m%d%H%M%S>-%[slug].org", - }, - }, - ---@class org-roam.config.Extensions - extensions = { - dailies = { - bindings = { - goto_today = "<prefix>t", - }, - }, - }, - }, - }, { "nvim-cmp", ---@module "cmp"