diff --git a/flake.lock b/flake.lock index 1e5f5e3..faa5c81 100644 --- a/flake.lock +++ b/flake.lock @@ -304,6 +304,22 @@ "type": "github" } }, + "markview-nvim-src": { + "flake": false, + "locked": { + "lastModified": 1719592662, + "narHash": "sha256-E1lHSjbnOOIeieaFJ+INvxJHCbfVS3mwbQ6wrlKeGSQ=", + "owner": "OXY2DEV", + "repo": "markview.nvim", + "rev": "f60219dce7283192d549f21847fcf8537bf6d260", + "type": "github" + }, + "original": { + "owner": "OXY2DEV", + "repo": "markview.nvim", + "type": "github" + } + }, "nextcloud-cookbook": { "flake": false, "locked": { @@ -570,6 +586,7 @@ "hmts-nvim-src": "hmts-nvim-src", "home-manager": "home-manager", "mac-app-util": "mac-app-util", + "markview-nvim-src": "markview-nvim-src", "nextcloud-cookbook": "nextcloud-cookbook", "nextcloud-external": "nextcloud-external", "nextcloud-news": "nextcloud-news", diff --git a/flake.nix b/flake.nix index 60b811c..41c1a6f 100644 --- a/flake.nix +++ b/flake.nix @@ -127,6 +127,10 @@ url = "github:mfussenegger/nvim-lint"; flake = false; }; + markview-nvim-src = { + url = "github:OXY2DEV/markview.nvim"; + flake = false; + }; # Tree-Sitter Grammars tree-sitter-bash = { diff --git a/modules/common/neovim/config/misc.nix b/modules/common/neovim/config/misc.nix index c292fdc..81ef9f4 100644 --- a/modules/common/neovim/config/misc.nix +++ b/modules/common/neovim/config/misc.nix @@ -10,7 +10,7 @@ pkgs.vimPlugins.vim-eunuch # File manipulation commands pkgs.vimPlugins.vim-fugitive # Git commands pkgs.vimPlugins.vim-repeat # Better repeat using . - pkgs.vimPlugins.glow-nvim # Markdown preview popup + pkgs.vimPlugins.markview-nvim # Markdown preview pkgs.vimPlugins.nvim-colorizer-lua # Hex color previews pkgs.vimPlugins.which-key-nvim # Keybind helper ]; @@ -21,7 +21,7 @@ names = false; }; }; - setup.glow = { }; + setup.markview = { }; setup.which-key = { }; vim.o = { diff --git a/overlays/neovim-plugins.nix b/overlays/neovim-plugins.nix index fd5b778..c478591 100644 --- a/overlays/neovim-plugins.nix +++ b/overlays/neovim-plugins.nix @@ -38,5 +38,6 @@ in base16-nvim = plugin "base16-nvim" inputs.base16-nvim-src; baleia-nvim = plugin "baleia-nvim" inputs.baleia-nvim-src; hmts-nvim = plugin "hmts-nvim" inputs.hmts-nvim-src; + markview-nvim = plugin "markview-nvim" inputs.markview-nvim-src; }; }