We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df531d5 commit 62ca5f4Copy full SHA for 62ca5f4
README.md
@@ -64,6 +64,9 @@ This will automatically install `nvim-autopairs` and enable it on startup. For m
64
In the file: `lua/custom/plugins/filetree.lua`, add:
65
66
```lua
67
+-- Unless you are still migrating, remove the deprecated commands from v1.x
68
+vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
69
+
70
return {
71
"nvim-neo-tree/neo-tree.nvim",
72
version = "*",
@@ -73,9 +76,6 @@ return {
73
76
"MunifTanjim/nui.nvim",
74
77
},
75
78
config = function ()
- -- Unless you are still migrating, remove the deprecated commands from v1.x
- vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
-
79
require('neo-tree').setup {}
80
end,
81
}
0 commit comments