From aa021493af22d4485319f2733cd411d5595ce680 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Niemier?= <~@hauleth.dev> Date: Mon, 3 Feb 2025 10:46:36 +0100 Subject: [PATCH] fix: reenable neorg in NVim --- modules/nvim.nix | 4 ++-- modules/nvim/init.fnl | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/nvim.nix b/modules/nvim.nix index 572c992..5af1c28 100644 --- a/modules/nvim.nix +++ b/modules/nvim.nix @@ -28,8 +28,8 @@ plugins.packer-nvim plugins.vim-nickel # plugins.lua-utils-nvim - # plugins.neorg - # plugins.neorg-telescope + plugins.neorg + plugins.neorg-telescope plugins.nvim-treesitter.withAllGrammars ]; diff --git a/modules/nvim/init.fnl b/modules/nvim/init.fnl index 3da66b3..bf85649 100644 --- a/modules/nvim/init.fnl +++ b/modules/nvim/init.fnl @@ -185,8 +185,8 @@ (map :n :v ":vert Start") (map :n :t ":tab Start") (map :t : "") - (map :i : :) - (map :n : :) + (map :i : :) + (map :n : :) (when (fun.executable :nvr) (set vim.env.EDITOR "nvr -cc split -c 'set bufhidden=delete' --remote-wait"))) @@ -289,9 +289,9 @@ :matchup {:enable true} :indent {:enable true} :incremental_selection {:enable true}}) - ;(setup :neorg - ; {:load {:core.defaults {} - ; :core.concealer {}}}) + (setup :neorg + {:load {:core.defaults {} + :core.concealer {}}}) )) (defcommand Clean "keeppatterns %s/\\s\\+$//e | set nohlsearch") -- 2.51.2