From 941d7b749e066b1dad549dd1169f9aa64c0c312b Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Mon, 16 Feb 2026 11:09:48 +0100 Subject: added nvim-tree to extraLuaConfig --- modules/home/i3wm/nord-blue/nvim.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/modules/home/i3wm/nord-blue/nvim.nix b/modules/home/i3wm/nord-blue/nvim.nix index 57ca5b4..9762c81 100644 --- a/modules/home/i3wm/nord-blue/nvim.nix +++ b/modules/home/i3wm/nord-blue/nvim.nix @@ -81,6 +81,24 @@ vim.keymap.set("n", "fb", builtin.buffers) vim.keymap.set("n", "fh", builtin.help_tags) + -- File tree + require("nvim-tree").setup({ + view = { + width = 30, + side = "left", + }, + renderer = { + group_empty = true, + }, + filters = { + dotfiles = false, + }, + }) + + -- Keybind to toggle + vim.keymap.set("n", "e", "NvimTreeToggle") + + ------------------------------------------------------------------ -- LaTeX configuration (from old LazyVim config) ------------------------------------------------------------------ -- cgit v1.2.3