add types annotations to opts

This commit is contained in:
2025-08-05 17:23:16 +03:00
parent c8e33adba0
commit 4baef6ee61
2 changed files with 9 additions and 2 deletions

View File

@@ -5,7 +5,9 @@ return {
config = function()
local gruvbox = require('gruvbox')
gruvbox.setup({
---@module 'gruvbox'
---@type GruvboxConfig
local gruvbox_settings = {
transparent_mode = false,
italic = {
strings = false,
@@ -24,7 +26,9 @@ return {
GruvboxAquaSign = { bg = '' },
GruvboxOrangeSign = { bg = '' },
}
})
}
gruvbox.setup(gruvbox_settings)
vim.cmd('colorscheme gruvbox')
vim.api.nvim_set_hl(0, 'SignColumn', { link = 'FoldColumn' })

View File

@@ -1,4 +1,7 @@
return {
'stevearc/dressing.nvim',
---@module 'dressing'
---@type dressing.InputConfig
opts = {},
}