last change, tone down some bright reds in my nvim view, this time folder labels in nvim-tree

This commit is contained in:
Matt Anderson
2026-06-09 15:51:17 -05:00
parent 6ecff62a9d
commit c50b3005b2
2 changed files with 7 additions and 4 deletions

View File

@@ -6,6 +6,7 @@
"helm-ls.nvim": { "branch": "main", "commit": "20df43509b02a3ce3c6b3eee254d6e2bffa9a370" },
"lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" },
"mason.nvim": { "branch": "main", "commit": "16ba83bfc8a25f52bb545134f5bee082b195c460" },
"mfd.nvim": { "branch": "master", "commit": "72ae627792960a7e490cb5242a78c570d02ba775" },
"neodev.nvim": { "branch": "main", "commit": "46aa467dca16cf3dfe27098042402066d2ae242d" },
"nnn.nvim": { "branch": "master", "commit": "efe690293eee87558f034a83ed96157e52639cdb" },
"nvim": { "branch": "main", "commit": "7365b8dede43a82ed1df741275b75333422e5402" },

View File

@@ -11,12 +11,14 @@ vim.wo.relativenumber = true
vim.g.mapleader = ' '
vim.o.splitright = true
-- Tone down ember's coral folders/titles in nvim-tree (and anything else
-- linking to Directory/Title) so code stays the visual focus.
-- Tone down ember's coral folders/titles so code stays the visual focus.
-- Directory names (incl. nvim-tree folders) and the active tabline entry
-- both pick up steel blue instead of coral.
require('ember').setup({
on_highlights = function(hl, theme)
hl.Directory = { fg = theme.ui.fg_alt, bold = true }
hl.Title = { fg = theme.ui.fg_alt, bold = true }
hl.Directory = { fg = theme.syn.steel, bold = true }
hl.Title = { fg = theme.ui.fg_alt, bold = true }
hl.TabLineSel = { fg = theme.syn.steel, bg = theme.ui.bg, bold = true }
end,
})
vim.cmd.colorscheme('ember-auto')