Skip to content

Commit

Permalink
chore: add to types
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Sep 2, 2023
1 parent a9f9e44 commit b3c9d2a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ require("catppuccin").setup({
transparent_background = false, -- disables setting the background color.
show_end_of_buffer = false, -- shows the '~' characters after the end of buffers
term_colors = false, -- sets terminal colors (e.g. `g:terminal_color_0`)
kitty = false, -- workaround for kitty transparent issue: https://github.com/kovidgoyal/kitty/issues/2917
kitty = false, -- workaround for kitty transparency issue: https://github.com/kovidgoyal/kitty/issues/2917
dim_inactive = {
enabled = false, -- dims the background color of inactive window
shade = "dark",
Expand Down
2 changes: 2 additions & 0 deletions lua/catppuccin/types.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
---@field show_end_of_buffer boolean?
-- If true, sets terminal colors (e.g. `g:terminal_color_0`).
---@field term_colors boolean?
-- Workaround for kitty transparency issue: https://github.com/kovidgoyal/kitty/issues/2917
---@field kitty boolean?
-- Settings for dimming of inactive windows.
---@field dim_inactive CtpDimInactive?
-- Disables all italic styles.
Expand Down
3 changes: 3 additions & 0 deletions vim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,9 @@ globals:
O.term_colors:
type: bool
property: read-only
O.kitty:
type: bool
property: read-only

O.dim_inactive.enabled:
type: bool
Expand Down

0 comments on commit b3c9d2a

Please sign in to comment.