diff --git a/dots/.config/nvim/lua/plugins/configs/neorg.lua b/dots/.config/nvim/lua/plugins/configs/neorg.lua index 5a88a0f0..e35229c9 100644 --- a/dots/.config/nvim/lua/plugins/configs/neorg.lua +++ b/dots/.config/nvim/lua/plugins/configs/neorg.lua @@ -8,9 +8,9 @@ return { { "nvim-treesitter/nvim-treesitter" }, }, keys = { - { "N", desc = "> Neorg" }, - { "Nj", ":Neorg journal custom", desc = "Neorg: Journal" }, - { "Nt", ":Neorg toc", desc = "Neorg: Table of Contents" }, + { "o", desc = "> Neorg" }, + { "oj", ":Neorg journal custom", desc = "Neorg: Journal" }, + { "ot", ":Neorg toc", desc = "Neorg: Table of Contents" }, }, config = function() require("neorg").setup({ diff --git a/dots/.config/nvim/lua/plugins/configs/org-mode.lua b/dots/.config/nvim/lua/plugins/configs/org-mode.lua deleted file mode 100644 index f0cde96d..00000000 --- a/dots/.config/nvim/lua/plugins/configs/org-mode.lua +++ /dev/null @@ -1,42 +0,0 @@ -return { - { - "nvim-orgmode/orgmode", - dependencies = { - { "nvim-treesitter/nvim-treesitter" }, - { - "akinsho/org-bullets.nvim", - opts = { - concealcursor = true, - symbols = { - headlines = { - "󰀘", - "", - "󰺕", - "", - "󰬪", - "󱆭", - } - } - } - } - }, - ft = { "org" }, - keys = { - { "o", desc = "> Org" }, - }, - config = function() - -- Load treesitter grammar for org - require("orgmode").setup_ts_grammar() - - -- Setup orgmode - require("orgmode").setup({ - org_agenda_files = "~/Notes/**/*", - org_default_notes_file = "~/Notes/refile.org", - org_startup_folded = "inherit" - }) - if vim.bo.filetype == "org" then - vim.cmd.edit() - end - end, - } -}