mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
19 lines
386 B
Lua
19 lines
386 B
Lua
---@class EditorYankOptions
|
|
---@field enable boolean
|
|
---@field higroup string
|
|
---@field timeout number
|
|
|
|
---@class EditorOptions
|
|
---@field highlight_yank EditorYankOptions
|
|
|
|
---@class ExtendedOptions
|
|
---@field editor EditorOptions
|
|
return {
|
|
editor = {
|
|
highlight_yank = {
|
|
enable = true,
|
|
timeout = 400,
|
|
higroup = "IncSearch"
|
|
}
|
|
}
|
|
}
|