mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-21 16:39:06 +02:00
refactor(neo-tree): move setting global to init
This commit is contained in:
parent
41645fdb2f
commit
94e6f57955
1 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,3 @@
|
|||
vim.g.neo_tree_remove_legacy_commands = 1
|
||||
local util = require("lazyvim.util")
|
||||
|
||||
return {
|
||||
|
@ -16,6 +15,9 @@ return {
|
|||
desc = "NeoTree",
|
||||
},
|
||||
},
|
||||
init = function()
|
||||
vim.g.neo_tree_remove_legacy_commands = 1
|
||||
end,
|
||||
config = {
|
||||
filesystem = {
|
||||
follow_current_file = true,
|
||||
|
@ -26,7 +28,6 @@ return {
|
|||
|
||||
-- search/replace in multiple files
|
||||
{
|
||||
|
||||
"windwp/nvim-spectre",
|
||||
keys = {
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue