@@ -63,6 +63,14 @@ opts = { style = "moon" }
63
63
64
64
``` lua
65
65
opts = {
66
+ lsp_styles = {
67
+ underlines = {
68
+ errors = { " undercurl" },
69
+ hints = { " undercurl" },
70
+ warnings = { " undercurl" },
71
+ information = { " undercurl" },
72
+ },
73
+ },
66
74
integrations = {
67
75
aerial = true ,
68
76
alpha = true ,
@@ -78,26 +86,14 @@ opts = {
78
86
leap = true ,
79
87
lsp_trouble = true ,
80
88
mason = true ,
81
- markdown = true ,
82
89
mini = true ,
83
- native_lsp = {
84
- enabled = true ,
85
- underlines = {
86
- errors = { " undercurl" },
87
- hints = { " undercurl" },
88
- warnings = { " undercurl" },
89
- information = { " undercurl" },
90
- },
91
- },
92
90
navic = { enabled = true , custom_bg = " lualine" },
93
91
neotest = true ,
94
92
neotree = true ,
95
93
noice = true ,
96
94
notify = true ,
97
- semantic_tokens = true ,
98
95
snacks = true ,
99
96
telescope = true ,
100
- treesitter = true ,
101
97
treesitter_context = true ,
102
98
which_key = true ,
103
99
},
@@ -115,6 +111,14 @@ opts = {
115
111
lazy = true ,
116
112
name = " catppuccin" ,
117
113
opts = {
114
+ lsp_styles = {
115
+ underlines = {
116
+ errors = { " undercurl" },
117
+ hints = { " undercurl" },
118
+ warnings = { " undercurl" },
119
+ information = { " undercurl" },
120
+ },
121
+ },
118
122
integrations = {
119
123
aerial = true ,
120
124
alpha = true ,
@@ -130,26 +134,14 @@ opts = {
130
134
leap = true ,
131
135
lsp_trouble = true ,
132
136
mason = true ,
133
- markdown = true ,
134
137
mini = true ,
135
- native_lsp = {
136
- enabled = true ,
137
- underlines = {
138
- errors = { " undercurl" },
139
- hints = { " undercurl" },
140
- warnings = { " undercurl" },
141
- information = { " undercurl" },
142
- },
143
- },
144
138
navic = { enabled = true , custom_bg = " lualine" },
145
139
neotest = true ,
146
140
neotree = true ,
147
141
noice = true ,
148
142
notify = true ,
149
- semantic_tokens = true ,
150
143
snacks = true ,
151
144
telescope = true ,
152
- treesitter = true ,
153
145
treesitter_context = true ,
154
146
which_key = true ,
155
147
},
@@ -160,7 +152,7 @@ opts = {
160
152
optional = true ,
161
153
opts = function (_ , opts )
162
154
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 ()
164
156
end
165
157
end ,
166
158
},
@@ -181,7 +173,7 @@ opts = {
181
173
``` lua
182
174
opts = function (_ , opts )
183
175
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 ()
185
177
end
186
178
end
187
179
```
197
189
optional = true ,
198
190
opts = function (_ , opts )
199
191
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 ()
201
193
end
202
194
end ,
203
195
}
0 commit comments