neovim: Enable filesystem watcher

This commit is contained in:
Peter Cai 2022-08-16 22:31:24 -04:00
parent f7495a6373
commit 190c3559e4
1 changed files with 4 additions and 1 deletions

View File

@ -55,7 +55,7 @@ return require('packer').startup({function(use)
use {
"nvim-neo-tree/neo-tree.nvim",
branch = "v2.x",
requires = {
requires = {
"nvim-lua/plenary.nvim",
"kyazdani42/nvim-web-devicons",
"MunifTanjim/nui.nvim",
@ -66,6 +66,9 @@ return require('packer').startup({function(use)
position = "left",
width = 36,
},
filesystem = {
use_libuv_file_watcher = true,
},
})
require("neo-tree.sources.manager").show("filesystem")
end,