mirror of
https://github.com/gabehf/base46.git
synced 2026-03-09 23:48:16 -07:00
add whichkey integration | organize integration files
This commit is contained in:
parent
ef1ae11a98
commit
c88d5ea527
4 changed files with 108 additions and 94 deletions
43
lua/integrations/telescope.lua
Normal file
43
lua/integrations/telescope.lua
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
local colors = require("base46").get_colors "base_30"
|
||||
|
||||
return {
|
||||
|
||||
TelescopeBorder = {
|
||||
fg = colors.darker_black,
|
||||
bg = colors.darker_black,
|
||||
},
|
||||
|
||||
TelescopePromptBorder = {
|
||||
fg = colors.black2,
|
||||
bg = colors.black2,
|
||||
},
|
||||
|
||||
TelescopePromptNormal = {
|
||||
fg = colors.white,
|
||||
bg = colors.black2,
|
||||
},
|
||||
|
||||
TelescopePromptPrefix = {
|
||||
fg = colors.red,
|
||||
bg = colors.black2,
|
||||
},
|
||||
|
||||
TelescopeNormal = { bg = colors.darker_black },
|
||||
|
||||
TelescopePreviewTitle = {
|
||||
fg = colors.black,
|
||||
bg = colors.green,
|
||||
},
|
||||
|
||||
TelescopePromptTitle = {
|
||||
fg = colors.black,
|
||||
bg = colors.red,
|
||||
},
|
||||
|
||||
TelescopeResultsTitle = {
|
||||
fg = colors.darker_black,
|
||||
bg = colors.darker_black,
|
||||
},
|
||||
|
||||
TelescopeSelection = { bg = colors.black2 },
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue