feat: support navic (#216)

* test vert split

* user correct colors

* feat: support navic
This commit is contained in:
Christian Chiarulli 2022-09-20 01:43:26 -04:00 committed by GitHub
parent 99f3f37bbd
commit e0bdba580d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -476,6 +476,37 @@ function M.setup()
CmpItemKindOperator = { fg = c.green1, bg = c.none },
CmpItemKindSnippet = { fg = c.dark5, bg = c.none },
-- navic
NavicIconsFile = { fg = c.fg, bg = c.none },
NavicIconsModule = { fg = c.yellow, bg = c.none },
NavicIconsNamespace = { fg = c.fg, bg = c.none },
NavicIconsPackage = { fg = c.fg, bg = c.none },
NavicIconsClass = { fg = c.orange, bg = c.none },
NavicIconsMethod = { fg = c.blue, bg = c.none },
NavicIconsProperty = { fg = c.green1, bg = c.none },
NavicIconsField = { fg = c.green1, bg = c.none },
NavicIconsConstructor = { fg = c.orange, bg = c.none },
NavicIconsEnum = { fg = c.orange, bg = c.none },
NavicIconsInterface = { fg = c.orange, bg = c.none },
NavicIconsFunction = { fg = c.blue, bg = c.none },
NavicIconsVariable = { fg = c.magenta, bg = c.none },
NavicIconsConstant = { fg = c.magenta, bg = c.none },
NavicIconsString = { fg = c.green, bg = c.none },
NavicIconsNumber = { fg = c.orange, bg = c.none },
NavicIconsBoolean = { fg = c.orange, bg = c.none },
NavicIconsArray = { fg = c.orange, bg = c.none },
NavicIconsObject = { fg = c.orange, bg = c.none },
NavicIconsKey = { fg = c.purple, bg = c.none },
NavicIconsKeyword = { fg = c.purple, bg = c.none },
NavicIconsNull = { fg = c.orange, bg = c.none },
NavicIconsEnumMember = { fg = c.green1, bg = c.none },
NavicIconsStruct = { fg = c.orange, bg = c.none },
NavicIconsEvent = { fg = c.orange, bg = c.none },
NavicIconsOperator = { fg = c.fg, bg = c.none },
NavicIconsTypeParameter = { fg = c.green1, bg = c.none },
NavicText = { fg = c.fg, bg = c.none },
NavicSeparator = { fg = c.fg, bg = c.none },
IndentBlanklineChar = { fg = c.fg_gutter },
IndentBlanklineContextChar = { fg = c.purple },