From 0e4408a3fd598ca0d29c5a17f55968bea167f0b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Fri, 22 Nov 2024 13:30:20 +0100 Subject: [PATCH] fix: Update keymap for todo-comments and enable markdown plugins --- modules/programs/nvim/new_plugins/other.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/modules/programs/nvim/new_plugins/other.nix b/modules/programs/nvim/new_plugins/other.nix index 3107253..26433f6 100644 --- a/modules/programs/nvim/new_plugins/other.nix +++ b/modules/programs/nvim/new_plugins/other.nix @@ -19,7 +19,7 @@ in { plugins.todo-comments = { enable = true; - keymaps.todoTelescope.key = "fc"; + keymaps.todoTelescope.key = "ft"; }; } @@ -61,6 +61,7 @@ in { plugins.obsidian.enable = true; plugins.obsidian.settings = { + ui.enable = false; dir = "~/Documents/Nextcloud/Notes/zettelkasten/"; note_id_func.__raw = '' function(title) @@ -86,6 +87,13 @@ in }; performance.combinePlugins.standalonePlugins = [ "mini.nvim" ]; } + { plugins.markdown-preview.enable = true; } + { + plugins.render-markdown = { + enable = true; + settings.latex.enable = false; + }; + } ]; }; }