feat: Add nerdy.nvim
This commit is contained in:
parent
96d1476870
commit
edc20aa461
3 changed files with 31 additions and 2 deletions
17
flake.lock
17
flake.lock
|
@ -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"
|
||||
}
|
||||
},
|
||||
|
|
|
@ -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,
|
||||
|
|
12
lua/plugins/nerdy-nvim.lua
Normal file
12
lua/plugins/nerdy-nvim.lua
Normal 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' },
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Reference in a new issue