From 928db722b4f4ba171c3b9ef6c4cc3da694f1ecc5 Mon Sep 17 00:00:00 2001 From: ooks-io Date: Mon, 6 Jan 2025 21:55:23 +1100 Subject: [PATCH] neovim: enable markdown module --- outputs/pkgs/ook-vim/config/plugins/languages/default.nix | 1 + outputs/pkgs/ook-vim/config/plugins/languages/markdown.nix | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/outputs/pkgs/ook-vim/config/plugins/languages/default.nix b/outputs/pkgs/ook-vim/config/plugins/languages/default.nix index 589b33c..78552be 100644 --- a/outputs/pkgs/ook-vim/config/plugins/languages/default.nix +++ b/outputs/pkgs/ook-vim/config/plugins/languages/default.nix @@ -8,6 +8,7 @@ ./ts.nix ./go.nix ./lua.nix + ./markdown.nix ]; vim.languages = { diff --git a/outputs/pkgs/ook-vim/config/plugins/languages/markdown.nix b/outputs/pkgs/ook-vim/config/plugins/languages/markdown.nix index bc85539..17280fb 100644 --- a/outputs/pkgs/ook-vim/config/plugins/languages/markdown.nix +++ b/outputs/pkgs/ook-vim/config/plugins/languages/markdown.nix @@ -2,15 +2,11 @@ vim = { languages.markdown = { enable = true; - format = true; extensions = { render-markdown-nvim = { enable = true; }; }; }; - utility = { - preview.markdownPreview = {enable = false;}; - }; }; }