Skip to content

Commit

Permalink
fix(config): set ignore diagnostics lines
Browse files Browse the repository at this point in the history
  • Loading branch information
pauchiner committed Feb 3, 2024
1 parent a07e63a commit e358e02
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lua/pastelnight/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,20 @@ local defaults = {
--- You can override specific color groups to use other groups or a hex color
--- function will be called with a ColorScheme table
---@param colors ColorScheme
---@diagnostic disable-next-line: unused-local
on_colors = function(colors) end,

--- You can override specific highlights to use other groups or a hex color
--- function will be called with a Highlights and ColorScheme table
---@param highlights Highlights
---@param colors ColorScheme
---@diagnostic disable-next-line: unused-local
on_highlights = function(highlights, colors) end,
use_background = true, -- can be light/dark/auto. When auto, background will be set to vim.o.background
}

---@type Config
---@diagnostic disable-next-line: missing-fields
M.options = {}

---@param options Config|nil
Expand Down

0 comments on commit e358e02

Please sign in to comment.