mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-09-06 02:11:33 +00:00
feat: add icon picker to utils & install deps
This commit is contained in:
parent
fbccfa48e4
commit
6572964523
4 changed files with 106 additions and 8 deletions
35
flake.nix
35
flake.nix
|
@ -122,8 +122,8 @@
|
|||
gitsigns.enable = true;
|
||||
};
|
||||
vim.minimap = {
|
||||
minimap-vim.enable = false; # FIXME: this plugin has a dependency that needs to be installed
|
||||
codewindow.enable = true;
|
||||
minimap-vim.enable = true; # FIXME: this plugin has a dependency that needs to be installed
|
||||
codewindow.enable = false;
|
||||
};
|
||||
vim.dashboard = {
|
||||
dashboard-nvim.enable = false;
|
||||
|
@ -134,6 +134,7 @@
|
|||
};
|
||||
vim.utility = {
|
||||
colorizer.enable = true;
|
||||
icon-picker.enable = true;
|
||||
venn-nvim.enable = false; # FIXME: throws an error when the command is ran manually
|
||||
};
|
||||
};
|
||||
|
@ -355,6 +356,12 @@
|
|||
flake = false;
|
||||
};
|
||||
|
||||
# Presence
|
||||
discord-nvim = {
|
||||
url = "github:andweeb/presence.nvim";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
# Autopairs
|
||||
nvim-autopairs = {
|
||||
url = "github:windwp/nvim-autopairs";
|
||||
|
@ -471,12 +478,6 @@
|
|||
inputs.vim-tidal-src.url = "github:tidalcycles/vim-tidal";
|
||||
};
|
||||
|
||||
# Plenary (required by crates-nvim)
|
||||
plenary-nvim = {
|
||||
url = "github:nvim-lua/plenary.nvim";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
# Minimap
|
||||
minimap-vim = {
|
||||
url = "github:wfxr/minimap.vim";
|
||||
|
@ -504,5 +505,23 @@
|
|||
url = "github:jbyuki/venn.nvim";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
icon-picker-nvim = {
|
||||
url = "github:ziontee113/icon-picker.nvim";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
# Dependencies
|
||||
plenary-nvim = {
|
||||
# (required by crates-nvim)
|
||||
url = "github:nvim-lua/plenary.nvim";
|
||||
flake = false;
|
||||
};
|
||||
|
||||
dressing-nvim = {
|
||||
# (required by icon-picker-nvim)
|
||||
url = "github:stevearc/dressing.nvim";
|
||||
flake = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue