fix: Satisfy warnings
This commit is contained in:
parent
b70909f429
commit
da79eabf09
1 changed files with 6 additions and 5 deletions
11
flake.nix
11
flake.nix
|
@ -90,7 +90,7 @@
|
|||
name,
|
||||
mkNvimPlugin,
|
||||
...
|
||||
} @ packageDef: {
|
||||
}: {
|
||||
# to define and use a new category, simply add a new list to a set here,
|
||||
# and later, you will include categoryname = true; in the set you
|
||||
# provide when you build the package using this builder function.
|
||||
|
@ -118,7 +118,8 @@
|
|||
# NOTE: lazy doesnt care if these are in startupPlugins or optionalPlugins
|
||||
# also you dont have to download everything via nix if you dont want.
|
||||
# but you have the option, and that is demonstrated here.
|
||||
startupPlugins = with pkgs.vimPlugins; with pkgs.neovimPlugins; {
|
||||
startupPlugins = with pkgs.vimPlugins;
|
||||
with pkgs.neovimPlugins; {
|
||||
general = [
|
||||
# LazyVim
|
||||
lazy-nvim
|
||||
|
@ -211,9 +212,9 @@
|
|||
# shared libraries to be added to LD_LIBRARY_PATH
|
||||
# variable available to nvim runtime
|
||||
sharedLibraries = {
|
||||
general = with pkgs; [
|
||||
# libgit2
|
||||
];
|
||||
# general = with pkgs; [
|
||||
# libgit2
|
||||
# ];
|
||||
};
|
||||
|
||||
# environmentVariables:
|
||||
|
|
Loading…
Reference in a new issue