mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-08 19:46:06 +01:00
tests/plugins/neo-tree: set logToFile to false to fix broken tests
This commit is contained in:
parent
cd63e6c918
commit
e5c6d9337a
1 changed files with 24 additions and 3 deletions
|
|
@ -1,7 +1,14 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.web-devicons.enable = true;
|
||||
plugins.neo-tree.enable = true;
|
||||
plugins.neo-tree = {
|
||||
enable = true;
|
||||
|
||||
# Otherwise fail at opening the log file
|
||||
# ERROR: [Neo-tree WARN] Could not open log file: /build/.local/share/nvim/neo-tree.nvim.log
|
||||
# /build/.local/share/nvim/neo-tree.nvim.log: No such file or directory
|
||||
logToFile = false;
|
||||
};
|
||||
};
|
||||
|
||||
defaults = {
|
||||
|
|
@ -443,7 +450,14 @@
|
|||
no-packages = {
|
||||
plugins = {
|
||||
web-devicons.enable = true;
|
||||
neo-tree.enable = true;
|
||||
neo-tree = {
|
||||
enable = true;
|
||||
|
||||
# Otherwise fail at opening the log file
|
||||
# ERROR: [Neo-tree WARN] Could not open log file: /build/.local/share/nvim/neo-tree.nvim.log
|
||||
# /build/.local/share/nvim/neo-tree.nvim.log: No such file or directory
|
||||
logToFile = false;
|
||||
};
|
||||
};
|
||||
|
||||
dependencies.git.enable = false;
|
||||
|
|
@ -452,7 +466,14 @@
|
|||
no-icons = {
|
||||
plugins = {
|
||||
web-devicons.enable = false;
|
||||
neo-tree.enable = true;
|
||||
neo-tree = {
|
||||
enable = true;
|
||||
|
||||
# Otherwise fail at opening the log file
|
||||
# ERROR: [Neo-tree WARN] Could not open log file: /build/.local/share/nvim/neo-tree.nvim.log
|
||||
# /build/.local/share/nvim/neo-tree.nvim.log: No such file or directory
|
||||
logToFile = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue