add types annotations to opts
This commit is contained in:
@@ -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' })
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
return {
|
||||
'stevearc/dressing.nvim',
|
||||
---@module 'dressing'
|
||||
---@type dressing.InputConfig
|
||||
opts = {},
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user