diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-03-01 22:27:38 +0100 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-03-01 22:27:38 +0100 |
| commit | d270aab83d7a67f0966ae2d03a401c61a138af1c (patch) | |
| tree | 2916fec91050ec73672623cde57d06438871108f | |
| parent | a594fd7a2e9abf8337571dd0dd7f3ff4419c3356 (diff) | |
added neorg to neovim config
| -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>") |
