mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
17 lines
476 B
Lua
17 lines
476 B
Lua
|
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,
|
||
|
}
|