Update telescope
This commit is contained in:
parent
ec6dbf60e8
commit
8ca815550f
3 changed files with 80 additions and 2 deletions
18
config/plugins/utils/neoclip.nix
Normal file
18
config/plugins/utils/neoclip.nix
Normal 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 = {'\"', '+'}
|
||||
})";
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue