File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Expand file tree Collapse file tree 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ local configuration = {
15
15
neorg = true ,
16
16
barbar = true ,
17
17
bufferline = false ,
18
+ cmp = true ,
18
19
gitgutter = false ,
19
20
gitsigns = true ,
20
21
telescope = false ,
Original file line number Diff line number Diff line change @@ -597,6 +597,24 @@ doom_one.load_colorscheme = function()
597
597
598
598
-- }}}
599
599
600
+ -- Cmp {{{
601
+
602
+ if configuration .plugins_integrations .cmp then
603
+ local cmp = {
604
+ CmpItemAbbrMatch = {fg = blue ,bg = " NONE" },
605
+ CmpItemAbbrMatchFuzzy = {fg = blue ,bg = " NONE" },
606
+ }
607
+ apply_highlight (cmp )
608
+ high_link (' CmpDocumentation' , ' TSVariable' )
609
+ high_link (' CmpDocumentationBorder' , ' TSVariable' )
610
+ high_link (' CmpItemAbbr' , ' TSVariable' )
611
+ high_link (' CmpItemAbbrDeprecated' , ' TSComment' )
612
+ high_link (' CmpItemKind' , ' TSConstMacro' )
613
+ high_link (' CmpItemMenu' , ' TSComment' )
614
+ end
615
+
616
+ -- }}}
617
+
600
618
-- Gitgutter {{{
601
619
602
620
if configuration .plugins_integrations .gitgutter then
You can’t perform that action at this time.
0 commit comments