Add settings for Neorg and keybinds

This commit is contained in:
Archie Fox
2025-08-15 02:02:47 +03:00
parent 78a39cfbfb
commit af607b992e
8 changed files with 403 additions and 108 deletions

View File

@@ -63,3 +63,7 @@ vim.keymap.set("n", "G", function()
local line_count = vim.api.nvim_buf_line_count(0)
vim.api.nvim_win_set_cursor(0, { line_count, 0 })
end, { desc = "Go to last line" })
k.set("n", "\\<Space>", "<Plug>(neorg.qol.todo-items.todo.task-cycle)", { desc = "Cycle done-undone task in Neorg" })
k.set("n", "\\jt", ":Neorg journal today<CR>", { desc = "Create Neorg Journal note today" })
k.set("n", "\\jc", ":Neorg journal custom<CR>", { desc = "Create Neorg Journal note custom" })