summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-03-13 09:51:16 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-03-13 09:51:16 +0100
commita397b72774336680024c25d74a6d6d346f67cdfb (patch)
treef065b64849e1f31a2b88f4124c5b19525e06bf6b
parentfced526ac30f2574e9efa258a519be3c204c36a5 (diff)
Updated orgmode and which-key configuration for nvim.nix
-rw-r--r--modules/home/i3wm/nord-blue/nvim.nix14
1 files changed, 4 insertions, 10 deletions
diff --git a/modules/home/i3wm/nord-blue/nvim.nix b/modules/home/i3wm/nord-blue/nvim.nix
index 62968ff..5d0270c 100644
--- a/modules/home/i3wm/nord-blue/nvim.nix
+++ b/modules/home/i3wm/nord-blue/nvim.nix
@@ -261,12 +261,10 @@
-------------------------------------------------
-- WHICH KEY
-------------------------------------------------
- require("which-key").setup({})
local wk = require("which-key")
-
- wk.register({
- { "<leader>+l", group = "LSP" },
- })
+ wk.add({
+ { "<leader>l", desc = "LSP"}
+ })
-------------------------------------------------
-- NVIM TREE
@@ -296,12 +294,8 @@
-------------------------------------------------
-- ORGMODE
-------------------------------------------------
- local projects = {
- "~/Documents/2. Writing/0. SOČ/org/*.org",
- "~/Documents/1_Projects/6_CRC-Altura/**/*.org",
- }
require("orgmode").setup({
- org_agenda_files = projects,
+ org_agenda_files = "~/**/*.org",
org_default_notes_file = "~/INBOX.org"
})