mirror of
https://github.com/gabehf/base46.git
synced 2026-03-11 08:20:54 -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
|
|
@ -1,33 +1,40 @@
|
|||
local theme = require("base46").get_colors "base_16"
|
||||
local base_30 = require("base46").get_colors "base_30"
|
||||
local base16 = require("base46").get_colors "base_16"
|
||||
local colors = require("base46").get_colors "base_30"
|
||||
|
||||
return {
|
||||
CmpItemKindConstant = { fg = theme.base09 },
|
||||
CmpItemKindFunction = { fg = theme.base0D },
|
||||
CmpItemKindIdentifier = { fg = theme.base08 },
|
||||
CmpItemKindField = { fg = theme.base08 },
|
||||
CmpItemKindVariable = { fg = theme.base0E },
|
||||
CmpItemKindSnippet = { fg = base_30.red },
|
||||
CmpItemKindText = { fg = theme.base0B },
|
||||
CmpItemKindStructure = { fg = theme.base0E },
|
||||
CmpItemKindType = { fg = theme.base0A },
|
||||
CmpItemKindKeyword = { fg = theme.base07 },
|
||||
CmpItemKindMethod = { fg = theme.base0D },
|
||||
CmpItemKindConstructor = { fg = base_30.blue },
|
||||
CmpItemKindFolder = { fg = theme.base07 },
|
||||
CmpItemKindModule = { fg = theme.base0A },
|
||||
CmpItemKindProperty = { fg = theme.base08 },
|
||||
-- nvim cmp
|
||||
CmpItemAbbr = { fg = colors.white },
|
||||
CmpItemAbbrMatch = { fg = colors.blue, bold = true },
|
||||
CmpBorder = { fg = colors.grey },
|
||||
CmpDocBorder = { fg = colors.grey },
|
||||
|
||||
-- cmp item kinds
|
||||
CmpItemKindConstant = { fg = base16.base09 },
|
||||
CmpItemKindFunction = { fg = base16.base0D },
|
||||
CmpItemKindIdentifier = { fg = base16.base08 },
|
||||
CmpItemKindField = { fg = base16.base08 },
|
||||
CmpItemKindVariable = { fg = base16.base0E },
|
||||
CmpItemKindSnippet = { fg = colors.red },
|
||||
CmpItemKindText = { fg = base16.base0B },
|
||||
CmpItemKindStructure = { fg = base16.base0E },
|
||||
CmpItemKindType = { fg = base16.base0A },
|
||||
CmpItemKindKeyword = { fg = base16.base07 },
|
||||
CmpItemKindMethod = { fg = base16.base0D },
|
||||
CmpItemKindConstructor = { fg = colors.blue },
|
||||
CmpItemKindFolder = { fg = base16.base07 },
|
||||
CmpItemKindModule = { fg = base16.base0A },
|
||||
CmpItemKindProperty = { fg = base16.base08 },
|
||||
-- CmpItemKindEnum = { fg = "" },
|
||||
CmpItemKindUnit = { fg = theme.base0E },
|
||||
CmpItemKindUnit = { fg = base16.base0E },
|
||||
-- CmpItemKindClass = { fg = "" },
|
||||
CmpItemKindFile = { fg = theme.base07 },
|
||||
CmpItemKindFile = { fg = base16.base07 },
|
||||
-- CmpItemKindInterface = { fg = "" },
|
||||
CmpItemKindColor = { fg = base_30.red },
|
||||
CmpItemKindReference = { fg = theme.base05 },
|
||||
CmpItemKindColor = { fg = colors.red },
|
||||
CmpItemKindReference = { fg = base16.base05 },
|
||||
-- CmpItemKindEnumMember = { fg = "" },
|
||||
CmpItemKindStruct = { fg = theme.base0E },
|
||||
CmpItemKindStruct = { fg = base16.base0E },
|
||||
-- CmpItemKindValue = { fg = "" },
|
||||
-- CmpItemKindEvent = { fg = "" },
|
||||
CmpItemKindOperator = { fg = theme.base05 },
|
||||
CmpItemKindTypeParameter = { fg = theme.base08 },
|
||||
CmpItemKindOperator = { fg = base16.base05 },
|
||||
CmpItemKindTypeParameter = { fg = base16.base08 },
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue