-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathtelescope.lua
85 lines (80 loc) · 4.14 KB
/
telescope.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
local M = {}
--- Get extension configuration
--- @param opts cyberdream.Config
--- @param t cyberdream.Palette
function M.get(opts, t)
opts = opts or {}
local highlights = {
TelescopeBorder = { fg = t.bg_highlight },
TelescopePromptTitle = { fg = t.blue },
TelescopeResultsTitle = { fg = t.cyan },
TelescopePromptPrefix = { fg = t.pink },
TelescopePreviewTitle = { fg = t.magenta },
TelescopeSelection = { bg = t.bg_highlight },
TelescopePromptCounter = { fg = t.pink },
TelescopeMatching = { fg = t.cyan },
-- Default links
TelescopeNormal = { link = "NormalFloat" },
TelescopeSelectionCaret = { link = "TelescopeSelection" },
TelescopeMultiSelection = { link = "Type" },
TelescopeMultiIcon = { link = "Identifier" },
TelescopePreviewNormal = { link = "TelescopeNormal" },
TelescopePromptNormal = { link = "TelescopeNormal" },
TelescopeResultsNormal = { link = "TelescopeNormal" },
TelescopePromptBorder = { link = "TelescopeBorder" },
TelescopeResultsBorder = { link = "TelescopeBorder" },
TelescopePreviewBorder = { link = "TelescopeBorder" },
TelescopeTitle = { link = "TelescopeBorder" },
TelescopePreviewLine = { link = "Visual" },
TelescopePreviewMatch = { link = "Search" },
TelescopePreviewPipe = { link = "Constant" },
TelescopePreviewCharDev = { link = "Constant" },
TelescopePreviewDirectory = { link = "Directory" },
TelescopePreviewBlock = { link = "Constant" },
TelescopePreviewLink = { link = "Special" },
TelescopePreviewSocket = { link = "Statement" },
TelescopePreviewRead = { link = "Constant" },
TelescopePreviewWrite = { link = "Statement" },
TelescopePreviewExecute = { link = "String" },
TelescopePreviewHyphen = { link = "NonText" },
TelescopePreviewSticky = { link = "Keyword" },
TelescopePreviewSize = { link = "String" },
TelescopePreviewUser = { link = "Constant" },
TelescopePreviewGroup = { link = "Constant" },
TelescopePreviewDate = { link = "Directory" },
TelescopePreviewMessage = { link = "TelescopePreviewNormal" },
TelescopePreviewMessageFillchar = { link = "TelescopePreviewMessage" },
TelescopeResultsClass = { link = "Function" },
TelescopeResultsConstant = { link = "Constant" },
TelescopeResultsField = { link = "Function" },
TelescopeResultsFunction = { link = "Function" },
TelescopeResultsMethod = { link = "Method" },
TelescopeResultsOperator = { link = "Operator" },
TelescopeResultsStruct = { link = "Struct" },
TelescopeResultsVariable = { link = "SpecialChar" },
TelescopeResultsLineNr = { link = "LineNr" },
TelescopeResultsIdentifier = { link = "Identifier" },
TelescopeResultsNumber = { link = "Number" },
TelescopeResultsComment = { link = "Comment" },
TelescopeResultsSpecialComment = { link = "SpecialComment" },
TelescopeResultsDiffChange = { link = "DiffChange" },
TelescopeResultsDiffAdd = { link = "DiffAdd" },
TelescopeResultsDiffDelete = { link = "DiffDelete" },
TelescopeResultsDiffUntracked = { link = "NonText" },
}
if opts.borderless_pickers then
highlights.TelescopeBorder = { fg = t.bg_alt, bg = t.bg_alt }
highlights.TelescopeNormal = { bg = t.bg_alt }
highlights.TelescopePreviewBorder = { fg = t.bg_alt, bg = t.bg_alt }
highlights.TelescopePreviewNormal = { bg = t.bg_alt }
highlights.TelescopePreviewTitle = { fg = t.bg_alt, bg = t.green, bold = true }
highlights.TelescopeResultsBorder = { fg = t.bg_alt, bg = t.bg_alt }
highlights.TelescopeResultsNormal = { bg = t.bg_alt }
highlights.TelescopePromptPrefix = { fg = t.blue, bg = t.bg_alt }
highlights.TelescopePromptCounter = { fg = t.cyan, bg = t.bg_alt }
highlights.TelescopePromptTitle = { fg = t.bg_alt, bg = t.blue, bold = true }
highlights.TelescopeResultsTitle = { fg = t.blue, bg = t.bg_alt, bold = true }
end
return highlights
end
return M