From a10a792da601f24c5549c9d3f4e0c3ffbf02ccf7 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Tue, 2 Apr 2024 22:33:04 +0200 Subject: [PATCH] [neovim] show hidden files and folders --- nix/home/neovim/neovim.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nix/home/neovim/neovim.nix b/nix/home/neovim/neovim.nix index 9c34e99..c59f430 100644 --- a/nix/home/neovim/neovim.nix +++ b/nix/home/neovim/neovim.nix @@ -69,6 +69,12 @@ -- load plugins require("neo-tree").setup({ + filesystem = { + filtered_items = { + hide_dotfiles = false, + hide_gitignored = false, + }, + }, window = { position = "left", width = 36,