Skip to content

Commit

Permalink
terminal/editors/neovim: add markview
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Jun 29, 2024
1 parent 3fac764 commit 6593abf
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions modules/home/programs/terminal/editors/neovim/plugins/markview.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{ pkgs, ... }:
{
programs.nixvim = {
extraPlugins = [
(pkgs.vimUtils.buildVimPlugin {
name = "markview.nvim";
src = pkgs.fetchFromGitHub {
owner = "OXY2DEV";
repo = "markview.nvim";
rev = "f60219dce7283192d549f21847fcf8537bf6d260";
hash = "sha256-E1lHSjbnOOIeieaFJ+INvxJHCbfVS3mwbQ6wrlKeGSQ=";
};
})
];

extraConfigLuaPre = # lua
''
require("markview").setup()
'';
};
}

0 comments on commit 6593abf

Please sign in to comment.