nixvim!
This commit is contained in:
parent
cee77dd6af
commit
a1562df146
47 changed files with 2430 additions and 108 deletions
20
modules/editors/nixvim/plug/utils/grapple.nix
Normal file
20
modules/editors/nixvim/plug/utils/grapple.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{pkgs, ...}: {
|
||||
extraPlugins = with pkgs.vimUtils; [
|
||||
(buildVimPlugin {
|
||||
pname = "grapple.nvim";
|
||||
version = "1.0";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "cbochs";
|
||||
repo = "grapple.nvim";
|
||||
rev = "59d458e378c4884f22b7a68e61c07ed3e41aabf0";
|
||||
hash = "sha256-4k8BE9i8kG4pL7Fj0xw9cG8sjA0u4jzJ40WSV/lBFhY=";
|
||||
};
|
||||
})
|
||||
];
|
||||
|
||||
extraConfigLua = ''
|
||||
require('grapple').setup({
|
||||
scope = "git_branch",
|
||||
})
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue