diff options
Diffstat (limited to 'modules/home/i3wm/nord-blue')
| -rw-r--r-- | modules/home/i3wm/nord-blue/nvim.nix | 14 |
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" }) |
