Skip to content

Commit 602c800

Browse files
chore(build): auto-generate docs
1 parent 3579fa1 commit 602c800

File tree

1 file changed

+19
-27
lines changed

1 file changed

+19
-27
lines changed

docs/plugins/colorscheme.md

Lines changed: 19 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,14 @@ opts = { style = "moon" }
6363

6464
```lua
6565
opts = {
66+
lsp_styles = {
67+
underlines = {
68+
errors = { "undercurl" },
69+
hints = { "undercurl" },
70+
warnings = { "undercurl" },
71+
information = { "undercurl" },
72+
},
73+
},
6674
integrations = {
6775
aerial = true,
6876
alpha = true,
@@ -78,26 +86,14 @@ opts = {
7886
leap = true,
7987
lsp_trouble = true,
8088
mason = true,
81-
markdown = true,
8289
mini = true,
83-
native_lsp = {
84-
enabled = true,
85-
underlines = {
86-
errors = { "undercurl" },
87-
hints = { "undercurl" },
88-
warnings = { "undercurl" },
89-
information = { "undercurl" },
90-
},
91-
},
9290
navic = { enabled = true, custom_bg = "lualine" },
9391
neotest = true,
9492
neotree = true,
9593
noice = true,
9694
notify = true,
97-
semantic_tokens = true,
9895
snacks = true,
9996
telescope = true,
100-
treesitter = true,
10197
treesitter_context = true,
10298
which_key = true,
10399
},
@@ -115,6 +111,14 @@ opts = {
115111
lazy = true,
116112
name = "catppuccin",
117113
opts = {
114+
lsp_styles = {
115+
underlines = {
116+
errors = { "undercurl" },
117+
hints = { "undercurl" },
118+
warnings = { "undercurl" },
119+
information = { "undercurl" },
120+
},
121+
},
118122
integrations = {
119123
aerial = true,
120124
alpha = true,
@@ -130,26 +134,14 @@ opts = {
130134
leap = true,
131135
lsp_trouble = true,
132136
mason = true,
133-
markdown = true,
134137
mini = true,
135-
native_lsp = {
136-
enabled = true,
137-
underlines = {
138-
errors = { "undercurl" },
139-
hints = { "undercurl" },
140-
warnings = { "undercurl" },
141-
information = { "undercurl" },
142-
},
143-
},
144138
navic = { enabled = true, custom_bg = "lualine" },
145139
neotest = true,
146140
neotree = true,
147141
noice = true,
148142
notify = true,
149-
semantic_tokens = true,
150143
snacks = true,
151144
telescope = true,
152-
treesitter = true,
153145
treesitter_context = true,
154146
which_key = true,
155147
},
@@ -160,7 +152,7 @@ opts = {
160152
optional = true,
161153
opts = function(_, opts)
162154
if (vim.g.colors_name or ""):find("catppuccin") then
163-
opts.highlights = require("catppuccin.groups.integrations.bufferline").get_theme()
155+
opts.highlights = require("catppuccin.special.bufferline").get_theme()
164156
end
165157
end,
166158
},
@@ -181,7 +173,7 @@ opts = {
181173
```lua
182174
opts = function(_, opts)
183175
if (vim.g.colors_name or ""):find("catppuccin") then
184-
opts.highlights = require("catppuccin.groups.integrations.bufferline").get_theme()
176+
opts.highlights = require("catppuccin.special.bufferline").get_theme()
185177
end
186178
end
187179
```
@@ -197,7 +189,7 @@ end
197189
optional = true,
198190
opts = function(_, opts)
199191
if (vim.g.colors_name or ""):find("catppuccin") then
200-
opts.highlights = require("catppuccin.groups.integrations.bufferline").get_theme()
192+
opts.highlights = require("catppuccin.special.bufferline").get_theme()
201193
end
202194
end,
203195
}

0 commit comments

Comments
 (0)