mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-22 21:30:51 +00:00
feat: add presence, icon picker & deps to plugins
This commit is contained in:
parent
88f8125582
commit
deab37a627
1 changed files with 5 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
||||||
with lib; let
|
with lib; let
|
||||||
# Plugin must be same as input name from flake.nix
|
# Plugin must be same as input name from flake.nix
|
||||||
availablePlugins = [
|
availablePlugins = [
|
||||||
|
# TODO: sort by category
|
||||||
"nvim-treesitter-context"
|
"nvim-treesitter-context"
|
||||||
"gitsigns-nvim"
|
"gitsigns-nvim"
|
||||||
"plenary-nvim"
|
"plenary-nvim"
|
||||||
|
@ -51,8 +52,11 @@ with lib; let
|
||||||
"colorizer"
|
"colorizer"
|
||||||
"venn-nvim"
|
"venn-nvim"
|
||||||
"cellular-automaton"
|
"cellular-automaton"
|
||||||
|
"presence-nvim"
|
||||||
|
"icon-picker-nvim"
|
||||||
|
"dressing-nvim"
|
||||||
];
|
];
|
||||||
|
# You can either use the name of the plugin or a package.
|
||||||
pluginsType = with types; listOf (nullOr (either (enum availablePlugins) package));
|
pluginsType = with types; listOf (nullOr (either (enum availablePlugins) package));
|
||||||
in {
|
in {
|
||||||
pluginsOpt = {
|
pluginsOpt = {
|
||||||
|
|
Loading…
Reference in a new issue