DanilaMihailov / beacon.nvim

Whenever cursor jumps some distance or moves between windows, it will flash so you can see where it is
339 stars 9 forks source link

Change of Color does not work #31

Closed centuryx476 closed 1 month ago

centuryx476 commented 2 months ago

No matter what color I change it too. It stays white. This is a pretty simple setup I have. LazyVim config, I put the beacon.lua config in its own file and load it in the init.lua

image

csessh commented 1 month ago

That config doesn't look right @centuryx476

Try this if you haven't:

return {
    "DanilaMihailov/beacon.nvim",
    opts = {
        enabled = true,
        speed = 2,
        width = 40,
        winblend = 70,
        fps = 60,
        min_jump = 10,
        cursor_events = {"CursorMoved"},
        window_events = { "WinEnter", "FocusGained" },
        highlight = { bg = "green", ctermbg = 15 },
    },
}
centuryx476 commented 1 month ago

Thank you, That did the trick...