Nvim: use blink instead of cmp
This commit is contained in:
14
.config/nvim/lua/plugins/cursor.lua
Normal file
14
.config/nvim/lua/plugins/cursor.lua
Normal file
@@ -0,0 +1,14 @@
|
||||
return {
|
||||
"DanilaMihailov/beacon.nvim",
|
||||
opts = {
|
||||
enabled = true, --- (boolean | fun():boolean) check if enabled
|
||||
speed = 2, --- integer speed at which animation goes
|
||||
width = 40, --- integer width of the beacon window
|
||||
winblend = 70, --- integer starting transparency of beacon window :h winblend
|
||||
fps = 60, --- integer how smooth the animation going to be
|
||||
min_jump = 10, --- integer what is considered a jump. Number of lines
|
||||
cursor_events = { 'CursorMoved' }, -- table<string> what events trigger check for cursor moves
|
||||
window_events = { 'WinEnter', 'FocusGained' }, -- table<string> what events trigger cursor highlight
|
||||
highlight = { bg = 'white', ctermbg = 15 }, -- vim.api.keyset.highlight table passed to vim.api.nvim_set_hl
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user