From 681bacc06a3da2eeb23976a7da39c8297ade23ae Mon Sep 17 00:00:00 2001 From: Saeed Afzal Date: Mon, 27 Nov 2023 20:27:10 +0000 Subject: [PATCH] More neorg config --- lua/core/init.lua | 3 +++ lua/plugins/neorg.lua | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/lua/core/init.lua b/lua/core/init.lua index 406528a..4a84147 100644 --- a/lua/core/init.lua +++ b/lua/core/init.lua @@ -14,10 +14,13 @@ opt.backup = false opt.swapfile = false opt.termguicolors = true opt.number = true +opt.relativenumber = true opt.mouse = "a" opt.hidden = true opt.scrolloff = 8 +opt.conceallevel = 3 + -- Indentation opt.expandtab = true opt.smartindent = true diff --git a/lua/plugins/neorg.lua b/lua/plugins/neorg.lua index 58c3115..c801c7e 100644 --- a/lua/plugins/neorg.lua +++ b/lua/plugins/neorg.lua @@ -9,8 +9,9 @@ return { ["core.dirman"] = { -- Manages Neorg workspaces config = { workspaces = { - notes = "/Users/ghost/Library/Mobile Documents/com~apple~CloudDocs/Neorg" - } + notes = "~/Library/Mobile Documents/com~apple~CloudDocs/Neorg" + }, + default_workspace = "notes" } } }