add: eagle config example

This commit is contained in:
asep.komarudin 2024-06-10 22:30:10 +07:00
parent 51bea4df6d
commit b5cc229ee8
2 changed files with 17 additions and 1 deletions

View file

@ -0,0 +1,16 @@
return {
-- "soulis-1256/eagle.nvim",
-- event = "BufRead",
-- config = function()
-- require("eagle").setup()
-- vim.api.nvim_create_autocmd({ "BufEnter", "BufWinEnter", "WinEnter" }, {
-- pattern = "*",
-- callback = function()
-- -- Aktifkan mousemoveevent untuk semua buffer kecuali NvimTree
-- if vim.fn.win_gettype() ~= "NvimTree" then
-- vim.o.mousemoveevent = true
-- end
-- end,
-- })
-- end,
}