From 9dfea77627309df7d841033d398b936dc26315bb Mon Sep 17 00:00:00 2001 From: aminnairi <18418459+aminnairi@users.noreply.github.com> Date: Wed, 3 Jan 2024 18:05:35 +0100 Subject: [PATCH] never display the line numbers for the tree view --- .../neovim/files/nvim/lua/settings/lazy/plugins/nvimtree.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/nvimtree.lua b/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/nvimtree.lua index e36b5f0..009f3f7 100644 --- a/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/nvimtree.lua +++ b/ansible/roles/neovim/files/nvim/lua/settings/lazy/plugins/nvimtree.lua @@ -117,6 +117,8 @@ return { width = get_width, -- Always open the tree on the left side of the screen side = "left", + -- Never display the number line for the tree + number = false, }) local whichKey = require("which-key")