mirror of
https://github.com/akr2002/nv.git
synced 2024-11-12 20:19:45 +00:00
ultimate-autopair
This commit is contained in:
parent
5095c414b3
commit
551cb5b08d
2 changed files with 19 additions and 0 deletions
|
@ -72,5 +72,6 @@
|
|||
./utils/tmux-navigator.nix
|
||||
./utils/todo-comments.nix
|
||||
./utils/toggleterm.nix
|
||||
./utils/ultimate-autopair.nix
|
||||
];
|
||||
}
|
||||
|
|
18
config/utils/ultimate-autopair.nix
Normal file
18
config/utils/ultimate-autopair.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{pkgs, ...}: {
|
||||
extraPlugins = with pkgs.vimUtils; [
|
||||
(buildVimPlugin {
|
||||
pname = "ultimate-autopair.nvim";
|
||||
version = "2024-02-05";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "altermo";
|
||||
repo = "ultimate-autopair.nvim";
|
||||
rev = "25c13e0ce167db0255456cac10158b27d2be30c0";
|
||||
sha256 = "0bsxfj6g8fii9nn92vl15hdhafx3fikgiz4srr7y10pxz01c5s4c";
|
||||
};
|
||||
})
|
||||
];
|
||||
extraConfigLua = ''
|
||||
require('ultimate-autopair').setup()
|
||||
'';
|
||||
}
|
||||
|
Loading…
Reference in a new issue