diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/home/i3wm/nord-blue/nvim.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/modules/home/i3wm/nord-blue/nvim.nix b/modules/home/i3wm/nord-blue/nvim.nix index e7d2a07..43f6619 100644 --- a/modules/home/i3wm/nord-blue/nvim.nix +++ b/modules/home/i3wm/nord-blue/nvim.nix @@ -22,6 +22,7 @@ catppuccin-nvim # Catppuccin theme nvim-tree-lua # Tree file browser nvim-web-devicons # Icons + neorg # Obsidian.md like file organization { plugin = vim-startify; # Add the plugin and its coresponding config @@ -103,6 +104,22 @@ }, }) + -- Neorg setup + require("neorg").setup({ + load = { + ["core.defaults"] = {}, + ["core.concealer"] = {}, + ["core.dirman"] = { + config = { + workspaces = { + SOČ = "/home/mun/Documents/2. Writing/0. SOČ", + }, + default_workspace = "SOČ", + }, + }, + }, + }) + -- Keybind to toggle vim.keymap.set("n", "<leader>e", "<cmd>NvimTreeToggle<CR>") |
