feat: Add nerdy.nvim

This commit is contained in:
punkfairie 2025-03-11 20:54:53 -07:00
parent 96d1476870
commit edc20aa461
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
3 changed files with 31 additions and 2 deletions

View file

@ -244,6 +244,22 @@
"type": "github"
}
},
"plugins-nerdy.nvim": {
"flake": false,
"locked": {
"lastModified": 1741523661,
"narHash": "sha256-/XRMNka5qSKairJX1/GWM8fhjUVw9U2Ikf37yOMukfU=",
"owner": "2kabhishek",
"repo": "nerdy.nvim",
"rev": "14bdcd13265dfc80e6ca6cee0598c5880729e24f",
"type": "github"
},
"original": {
"owner": "2kabhishek",
"repo": "nerdy.nvim",
"type": "github"
}
},
"plugins-nvim-emmet": {
"flake": false,
"locked": {
@ -266,6 +282,7 @@
"nixCats": "nixCats",
"nixpkgs": "nixpkgs_2",
"plugins-cutlass.nvim": "plugins-cutlass.nvim",
"plugins-nerdy.nvim": "plugins-nerdy.nvim",
"plugins-nvim-emmet": "plugins-nvim-emmet"
}
},

View file

@ -16,7 +16,7 @@
flake = false;
};
plugins-cutlass-nvim = {
"plugins-cutlass.nvim" = {
url = "github:gbprod/cutlass.nvim";
flake = false;
};
@ -78,7 +78,7 @@
# `plugins-<pluginName>`
# Once we add this overlay to our nixpkgs, we are able to
# use `pkgs.neovimPlugins`, which is a set of our plugins.
(utils.standardPluginOverlay inputs)
(utils.sanitizedPluginOverlay inputs)
# add any other flake overlays here.
# when other people mess up their overlays by wrapping them with system,

View file

@ -0,0 +1,12 @@
return {
{
'2kabhishek/nerdy.nvim',
dependencies = {
'folke/snacks.nvim',
},
cmd = 'Nerdy',
keys = {
{ '<LEADER>ci', '<CMD>Nerdy<CR>', desc = 'Pick Nerd Icon' },
},
},
}