2024-05-05 19:39:35 +02:00
|
|
|
{ pkgs, ... }:
|
2024-01-04 23:00:37 +01:00
|
|
|
# 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
|
2024-05-05 19:39:35 +02:00
|
|
|
pkgs.lib.optionalAttrs (!pkgs.stdenv.isDarwin) {
|
2023-03-17 10:00:22 +01:00
|
|
|
empty = {
|
|
|
|
plugins.netman.enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
withNeotree = {
|
|
|
|
plugins.neo-tree.enable = true;
|
|
|
|
plugins.netman = {
|
|
|
|
enable = true;
|
|
|
|
neoTreeIntegration = true;
|
|
|
|
};
|
2024-09-20 13:25:13 -05:00
|
|
|
plugins.web-devicons.enable = true;
|
2023-03-17 10:00:22 +01:00
|
|
|
};
|
|
|
|
}
|