* feat(icon_placement): Allow right_align icon_placemente for decorator using ext_marks nvim api * feat(icon_placement): Allow right_align icon_placemente for decorator using ext_marks nvim api feat(icon_placement): Allow right_align icon_placemente for decorator using ext_marks nvim api * feat(icon_placement): consolidate doc --------- Co-authored-by: Alexander Courtis <alex@courtis.org>
23 lines
306 B
Lua
23 lines
306 B
Lua
local M = {}
|
|
|
|
---Setup options for "highlight_*"
|
|
---@enum HL_POSITION
|
|
M.HL_POSITION = {
|
|
none = 0,
|
|
icon = 1,
|
|
name = 2,
|
|
all = 4,
|
|
}
|
|
|
|
---Setup options for "*_placement"
|
|
---@enum ICON_PLACEMENT
|
|
M.ICON_PLACEMENT = {
|
|
none = 0,
|
|
signcolumn = 1,
|
|
before = 2,
|
|
after = 3,
|
|
right_align = 4,
|
|
}
|
|
|
|
return M
|