Update telescope

This commit is contained in:
♥ Minnie ♥ 2024-08-06 13:11:01 +08:00
parent ec6dbf60e8
commit 8ca815550f
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
3 changed files with 80 additions and 2 deletions

View file

@ -0,0 +1,18 @@
{ pkgs, ... }:
{
extraPlugins = [(pkgs.vimUtils.buildVimPlugin {
name = "neoclip";
src = pkgs.fetchFromGitHub {
owner = "AckslD";
repo = "nvim-neoclip.lua";
rev = "709c97f";
hash = "sha256-8ZPmxVM4dzjJxAYUHRMCiAQBxZEGHtsgSCNlCZBRBWo=";
};
})];
extraConfigLua = "require('neoclip').setup({
default_register = {'\"', '+'}
})";
}