You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nvim-libmodal/plugin/libmodal.lua

15 lines
403 B
Lua

local g = vim.g
if g.loaded_libmodal then return end
g.loaded_libmodal = true
g.libmodalTimeouts = g.libmodalTimeouts or vim.go.timeout
-- The default highlight groups (for colors) are specified below.
-- Change these default colors by defining or linking the corresponding highlight group.
vim.cmd
[[
highlight default link LibmodalPrompt ModeMsg
highlight default link LibmodalStar StatusLine
]]