summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 75c24d8..ce72ebb 100644
--- a/README.md
+++ b/README.md
@@ -64,6 +64,9 @@ This will automatically install `nvim-autopairs` and enable it on startup. For m
In the file: `lua/custom/plugins/filetree.lua`, add:
```lua
+-- Unless you are still migrating, remove the deprecated commands from v1.x
+vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
+
return {
"nvim-neo-tree/neo-tree.nvim",
version = "*",
@@ -73,9 +76,6 @@ return {
"MunifTanjim/nui.nvim",
},
config = function ()
- -- Unless you are still migrating, remove the deprecated commands from v1.x
- vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
-
require('neo-tree').setup {}
end,
}