diff options
| author | pynappo <lehtien.david@gmail.com> | 2025-05-10 17:18:04 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-10 20:18:04 -0400 |
| commit | 1a7f6ca9ca8bc2dcfd54a1393f0c50950d7e46d4 (patch) | |
| tree | 50df1209afd85e569d4fbaddcce5cd6db4aa69fd /nvim | |
| parent | a29ae2c5108cafb4d926946bd911005f7a9bb309 (diff) | |
| download | dots-1a7f6ca9ca8bc2dcfd54a1393f0c50950d7e46d4.tar.gz | |
don't lazy-load neo-tree so netrw hijacking on startup works (#1489)
Diffstat (limited to 'nvim')
| -rw-r--r-- | nvim/lua/kickstart/plugins/neo-tree.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nvim/lua/kickstart/plugins/neo-tree.lua b/nvim/lua/kickstart/plugins/neo-tree.lua index bd44226..c706789 100644 --- a/nvim/lua/kickstart/plugins/neo-tree.lua +++ b/nvim/lua/kickstart/plugins/neo-tree.lua @@ -9,7 +9,7 @@ return { 'nvim-tree/nvim-web-devicons', -- not strictly required, but recommended 'MunifTanjim/nui.nvim', }, - cmd = 'Neotree', + lazy = false, keys = { { '\\', ':Neotree reveal<CR>', desc = 'NeoTree reveal', silent = true }, }, |