Compare commits

...

2 commits

3 changed files with 39 additions and 4 deletions

View file

@ -228,7 +228,7 @@
"type": "github" "type": "github"
} }
}, },
"plugins-cutlass-nvim": { "plugins-cutlass.nvim": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1702908963, "lastModified": 1702908963,
@ -244,6 +244,22 @@
"type": "github" "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": { "plugins-nvim-emmet": {
"flake": false, "flake": false,
"locked": { "locked": {
@ -265,7 +281,8 @@
"neovim-nightly-overlay": "neovim-nightly-overlay", "neovim-nightly-overlay": "neovim-nightly-overlay",
"nixCats": "nixCats", "nixCats": "nixCats",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs_2",
"plugins-cutlass-nvim": "plugins-cutlass-nvim", "plugins-cutlass.nvim": "plugins-cutlass.nvim",
"plugins-nerdy.nvim": "plugins-nerdy.nvim",
"plugins-nvim-emmet": "plugins-nvim-emmet" "plugins-nvim-emmet": "plugins-nvim-emmet"
} }
}, },

View file

@ -16,11 +16,16 @@
flake = false; flake = false;
}; };
plugins-cutlass-nvim = { "plugins-cutlass.nvim" = {
url = "github:gbprod/cutlass.nvim"; url = "github:gbprod/cutlass.nvim";
flake = false; flake = false;
}; };
"plugins-nerdy.nvim" = {
url = "github:2kabhishek/nerdy.nvim";
flake = false;
};
# see :help nixCats.flake.inputs # see :help nixCats.flake.inputs
# If you want your plugin to be loaded by the standard overlay, # If you want your plugin to be loaded by the standard overlay,
# i.e. if it wasnt on nixpkgs, but doesnt have an extra build step. # i.e. if it wasnt on nixpkgs, but doesnt have an extra build step.
@ -73,7 +78,7 @@
# `plugins-<pluginName>` # `plugins-<pluginName>`
# Once we add this overlay to our nixpkgs, we are able to # Once we add this overlay to our nixpkgs, we are able to
# use `pkgs.neovimPlugins`, which is a set of our plugins. # use `pkgs.neovimPlugins`, which is a set of our plugins.
(utils.standardPluginOverlay inputs) (utils.sanitizedPluginOverlay inputs)
# add any other flake overlays here. # add any other flake overlays here.
# when other people mess up their overlays by wrapping them with system, # when other people mess up their overlays by wrapping them with system,
@ -330,6 +335,7 @@
# Custom # Custom
cutlass-nvim cutlass-nvim
diffview-nvim diffview-nvim
nerdy-nvim
nvim-emmet nvim-emmet
rose-pine rose-pine
treesj treesj

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' },
},
},
}