diff --git a/nix/neovim-overlay.nix b/nix/neovim-overlay.nix index f7cb482..3e96063 100644 --- a/nix/neovim-overlay.nix +++ b/nix/neovim-overlay.nix @@ -81,6 +81,7 @@ with final.pkgs.lib; let # ^ UI # language support + markdown-preview-nvim # ^ language support # navigation/editing enhancement plugins diff --git a/nvim/plugin/keymaps.lua b/nvim/plugin/keymaps.lua index ec37ead..317bb47 100644 --- a/nvim/plugin/keymaps.lua +++ b/nvim/plugin/keymaps.lua @@ -60,6 +60,8 @@ require('which-key').add({ end, desc = "trouble: load [w]orkspace" }, + + { "lP", "MarkdownPreviewToggle", desc = "Markdown [l] [P]review"}, }) -- Toggle the quickfix list (only opens if it is populated)