mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-24 04:35:08 +02:00
plugins/utils: move to by-name
This commit is contained in:
parent
faff32b9f1
commit
52f125679f
195 changed files with 2 additions and 102 deletions
16
tests/test-sources/plugins/by-name/netman/default.nix
Normal file
16
tests/test-sources/plugins/by-name/netman/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ pkgs, ... }:
|
||||
# Fails on darwin with:
|
||||
# E5113: Error while calling lua chunk: ...ckages/start/netman.nvim/lua/netman/tools/utils/init.lua:52: Unable to open netman utils cache
|
||||
pkgs.lib.optionalAttrs (!pkgs.stdenv.isDarwin) {
|
||||
empty = {
|
||||
plugins.netman.enable = true;
|
||||
};
|
||||
|
||||
withNeotree = {
|
||||
plugins.neo-tree.enable = true;
|
||||
plugins.netman = {
|
||||
enable = true;
|
||||
neoTreeIntegration = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue