Skip to content

Commit

Permalink
feat(highlights): update telescope/wezterm/cursor, add leap.nvim #35
Browse files Browse the repository at this point in the history
  • Loading branch information
olivercederborg committed Aug 15, 2023
2 parents 6f281c8 + 22be819 commit bfc767c
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 11 deletions.
4 changes: 2 additions & 2 deletions extra/wezterm/poimandres-storm.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ brights = [
background = '#252B37'
foreground = '#E4F0FB'
compose_cursor = '#FCC5E9'
cursor_bg = '#7390AA'
cursor_border = '#7390AA'
cursor_bg = '#A6ACCD'
cursor_border = '#A6ACCD'
cursor_fg = '#252B37'
scrollbar_thumb = '#404350'
selection_bg = '#506477'
Expand Down
4 changes: 2 additions & 2 deletions extra/wezterm/poimandres.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ brights = [
background = '#1B1E28'
foreground = '#E4F0FB'
compose_cursor = '#FCC5E9'
cursor_bg = '#7390AA'
cursor_border = '#7390AA'
cursor_bg = '#A6ACCD'
cursor_border = '#A6ACCD'
cursor_fg = '#1B1E28'
scrollbar_thumb = '#303340'
selection_bg = '#506477'
Expand Down
26 changes: 19 additions & 7 deletions lua/poimandres/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function M.get(config)
ColorColumn = { bg = p.blueGray1 },
Conceal = { bg = p.none },
CurSearch = { link = 'IncSearch' },
-- Cursor = {},
Cursor = { fg = p.background3, bg = p.blueGray1 },
CursorColumn = { bg = p.background1 },
-- CursorIM = {},
CursorLine = { bg = p.background1 },
Expand All @@ -43,7 +43,7 @@ function M.get(config)
Folded = { fg = p.text, bg = groups.panel },
IncSearch = { fg = p.background3, bg = p.blue2 },
LineNr = { fg = p.blueGray3 },
MatchParen = { bg = p.blueGray3, fg = p.background3 },
MatchParen = { fg = p.background3, bg = p.blueGray3 },
ModeMsg = { fg = p.blue3 },
MoreMsg = { fg = p.blue3 },
NonText = { fg = p.blue4 },
Expand Down Expand Up @@ -396,14 +396,19 @@ function M.get(config)
PounceMatch = { link = 'Search' },

-- nvim-telescope/telescope.nvim
TelescopeBorder = { fg = groups.border },
TelescopeMatching = { fg = p.teal1 },
TelescopeNormal = { fg = p.text },
TelescopePromptNormal = { fg = p.text },
TelescopePromptPrefix = { fg = p.blueGray1 },
TelescopeSelection = { fg = p.text, bg = p.blueGray1 },
TelescopeSelectionCaret = { fg = p.pink2, bg = p.blueGray1 },
TelescopeSelection = { fg = p.text, bg = p.background1 },
TelescopeTitle = { fg = p.blueGray2 },
TelescopeBorder = { fg = p.background1 },
TelescopePromptBorder = { fg = p.background1 },
TelescopePromptNormal = { fg = p.text },
TelescopePromptPrefix = { fg = p.blueGray2 },
TelescopePreviewTitle = { fg = p.background2, bg = p.teal1 },
TelescopePromptTitle = { fg = p.background2, bg = p.blue1 },
TelescopeResultsDiffAdd = { fg = p.teal1 },
TelescopeResultsDiffChange = { fg = p.yellow },
TelescopeResultsDiffDelete = { fg = p.pink3 },

-- phaazon/hop.nvim
HopNextKey = { fg = p.blue1 },
Expand All @@ -412,6 +417,13 @@ function M.get(config)
HopUnmatched = { fg = p.blueGray3 },
HopCursor = { fg = p.blue3 },

-- ggandor/leap.nvim
LeapMatch = { fg = p.background2, bg = p.pink2 },
LeapLabelPrimary = { fg = p.background2, bg = p.teal1 },
LeapLabelSecondary = { fg = p.background2, bg = p.blue1 },
LeapLabelSelected = { fg = p.background2, bg = p.yellow },
LeapBackground = { bg = p.background1 },

-- rcarriga/nvim-notify
NotifyINFOBorder = { fg = p.teal1 },
NotifyINFOTitle = { link = 'NotifyINFOBorder' },
Expand Down

0 comments on commit bfc767c

Please sign in to comment.