Compare commits
2 commits
b35c84dcbd
...
edc20aa461
Author | SHA1 | Date | |
---|---|---|---|
edc20aa461 | |||
96d1476870 |
3 changed files with 39 additions and 4 deletions
21
flake.lock
21
flake.lock
|
@ -228,7 +228,7 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"plugins-cutlass-nvim": {
|
||||
"plugins-cutlass.nvim": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1702908963,
|
||||
|
@ -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": {
|
||||
|
@ -265,7 +281,8 @@
|
|||
"neovim-nightly-overlay": "neovim-nightly-overlay",
|
||||
"nixCats": "nixCats",
|
||||
"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"
|
||||
}
|
||||
},
|
||||
|
|
10
flake.nix
10
flake.nix
|
@ -16,11 +16,16 @@
|
|||
flake = false;
|
||||
};
|
||||
|
||||
plugins-cutlass-nvim = {
|
||||
"plugins-cutlass.nvim" = {
|
||||
url = "github:gbprod/cutlass.nvim";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
"plugins-nerdy.nvim" = {
|
||||
url = "github:2kabhishek/nerdy.nvim";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
# see :help nixCats.flake.inputs
|
||||
# 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.
|
||||
|
@ -73,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,
|
||||
|
@ -330,6 +335,7 @@
|
|||
# Custom
|
||||
cutlass-nvim
|
||||
diffview-nvim
|
||||
nerdy-nvim
|
||||
nvim-emmet
|
||||
rose-pine
|
||||
treesj
|
||||
|
|
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