neorg config improvements. Remove mind.
This commit is contained in:
parent
9de4e06a7d
commit
8afb4ac78d
|
@ -1,19 +0,0 @@
|
||||||
return {
|
|
||||||
"phaazon/mind.nvim",
|
|
||||||
branch = "v2.2",
|
|
||||||
keys = {
|
|
||||||
{ "<leader>nm", "<cmd>MindOpenMain<cr>", desc = "Open Main Mind" },
|
|
||||||
{ "<leader>np", "<cmd>MindOpenProject<cr>", desc = "Open Mind for current project" },
|
|
||||||
{ "<leader>ns", "<cmd>MindOpenSmartProject<cr>", desc = "Open Mind for smart project" },
|
|
||||||
{ "<leader>nc", "<cmd>MindClose<cr>", desc = "Close Mind" },
|
|
||||||
{ "<leader>nr", "<cmd>MindReloadState<cr>", desc = "Mind: Reload State" },
|
|
||||||
},
|
|
||||||
config = function()
|
|
||||||
require("mind").setup({
|
|
||||||
persistence = {
|
|
||||||
data_dir = "~/Documents/mind.nvim/data",
|
|
||||||
state_path = "~/Documents/mind.nvim/mind.json",
|
|
||||||
},
|
|
||||||
})
|
|
||||||
end,
|
|
||||||
}
|
|
|
@ -1,17 +1,30 @@
|
||||||
return {
|
return {
|
||||||
"nvim-neorg/neorg",
|
"nvim-neorg/neorg",
|
||||||
|
lazy = false,
|
||||||
build = ":Neorg sync-parsers",
|
build = ":Neorg sync-parsers",
|
||||||
dependencies = { "nvim-lua/plenary.nvim" },
|
dependencies = { "nvim-lua/plenary.nvim" },
|
||||||
|
keys = {
|
||||||
|
{ "<leader>ni", "<cmd>Neorg index<cr>", desc = "Index" },
|
||||||
|
{ "<leader>ns", "<cmd>Neorg generate-workspace-summary<cr>", desc = "Generate Workspace Summary" },
|
||||||
|
{ "<leader>njt", "<cmd>Neorg journal today<cr>", desc = "Journal Today" },
|
||||||
|
{ "<leader>njT", "<cmd>Neorg journal template<cr>", desc = "Journal Template" },
|
||||||
|
},
|
||||||
config = function()
|
config = function()
|
||||||
require("neorg").setup {
|
require("neorg").setup {
|
||||||
load = {
|
load = {
|
||||||
["core.defaults"] = {}, -- Loads default behaviour
|
["core.defaults"] = {},
|
||||||
["core.concealer"] = {}, -- Adds pretty icons to your documents
|
["core.summary"] = {},
|
||||||
["core.dirman"] = { -- Manages Neorg workspaces
|
["core.ui.calendar"] = {},
|
||||||
|
["core.concealer"] = {
|
||||||
|
icon_preset = "diamond"
|
||||||
|
},
|
||||||
|
["core.dirman"] = {
|
||||||
config = {
|
config = {
|
||||||
workspaces = {
|
workspaces = {
|
||||||
notes = "~/notes",
|
notes = "~/notes",
|
||||||
|
til = "~/til",
|
||||||
},
|
},
|
||||||
|
default_workspace = "notes",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue