Skip to content

Commit

Permalink
feat: added fern and lspsaga colors (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
gaetan-puleo committed Jun 24, 2021
1 parent 6e1d4c2 commit 65b99e5
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ A dark and light Neovim theme written in Lua ported from the Visual Studio Code
+ [Lightline](https://github.com/itchyny/lightline.vim)
+ [Neogit](https://github.com/TimUntersberger/neogit)
+ [vim-sneak](https://github.com/justinmk/vim-sneak)
+ [Fern](https://github.com/lambdalisue/fern.vim)

## 鈿★笍 Requirements

Expand Down
31 changes: 30 additions & 1 deletion lua/tokyonight/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,18 @@ function M.setup(config)
NvimTreeSymlink = { fg = c.blue },
-- NvimTreeFolderName= { fg = c.fg_float },

-- Fern
FernBranchText = {fg = c.blue},

-- glyph palette
GlyphPalette1 ={ fg = c.red1 },
GlyphPalette2 ={ fg = c.green },
GlyphPalette3 ={ fg = c.yellow },
GlyphPalette4 ={ fg = c.blue },
GlyphPalette6 ={ fg = c.green1 },
GlyphPalette7 ={ fg = c.fg },
GlyphPalette9 ={ fg = c.red },

-- Dashboard
DashboardShortCut = { fg = c.cyan },
DashboardHeader = { fg = c.blue },
Expand All @@ -328,7 +340,24 @@ function M.setup(config)
DiagnosticWarning = { fg = c.warning },
DiagnosticInformation = { fg = c.info },
DiagnosticHint = { fg = c.hint },


LspFloatWinNormal = { bg = c.dark },
LspFloatWinBorder = { fg = c.border_highlight },
LspSagaBorderTitle = { fg = c.cyan },
LspSagaHoverBorder = { fg = c.blue },
LspSagaRenameBorder = { fg = c.green },
LspSagaDefPreviewBorder = { fg = c.green },
LspSagaCodeActionBorder = { fg = c.blue },
LspSagaFinderSelection = { fg = c.bg_visual },
LspSagaCodeActionTitle = { fg = c.blue1 },
LspSagaCodeActionContent = { fg = c.purple },
LspSagaSignatureHelpBorder = { fg = c.red },
ReferencesCount = { fg = c.purple },
DefinitionCount = { fg = c.purple },
DefinitionIcon = { fg = c.blue },
ReferencesIcon = { fg = c.blue },
TargetWord = { fg = c.cyan },

-- NeoVim
healthError = { fg = c.error },
healthSuccess = { fg = c.green1 },
Expand Down

0 comments on commit 65b99e5

Please sign in to comment.