You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lua/nvim-tree.lua
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,8 @@ function M.setup(config_user)
18
18
19
19
-- Nvim version check
20
20
ifvim.fn.has("nvim-0.10") ==0then
21
-
require("nvim-tree.notify").warn("nvim-tree.lua requires Nvim 0.10 or higher. You may use a compat-nvim-0.X tag for earlier Nvim versions, however they will receive no updates or support.")
21
+
require("nvim-tree.notify").warn(
22
+
"nvim-tree.lua requires Nvim >= 0.10. You may use a compat-nvim-0.X tag for earlier Nvim versions, however they will receive no updates or support.")
0 commit comments