We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c696699 commit 2a57b06Copy full SHA for 2a57b06
1 file changed
config/nvim/lua/plugins/navigation.lua
@@ -39,11 +39,13 @@ local neo_tree_spec = {
39
40
-- nvim-lsp-file-operations automatically fixes imports whenever we rename a
41
-- file in neo-tree.
42
+--
43
+-- Neo-tree must load before this, so this depends on the Neo-tree spec.
44
local neo_tree_file_operations_spec = {
45
-- https://github.com/antosha417/nvim-lsp-file-operations
46
"antosha417/nvim-lsp-file-operations",
47
config = true,
- dependencies = { "nvim-lua/plenary.nvim" },
48
+ dependencies = { "nvim-lua/plenary.nvim", neo_tree_spec },
49
}
50
51
-- telescope does fuzzy finding over all sorts of things.
@@ -70,7 +72,6 @@ local telescope_spec = {
70
72
71
73
74
return {
- neo_tree_spec,
75
neo_tree_file_operations_spec,
76
telescope_spec,
77
0 commit comments