From c50b3005b26daaff915a52bda826f9a86b9c37b7 Mon Sep 17 00:00:00 2001 From: Matt Anderson Date: Tue, 9 Jun 2026 15:51:17 -0500 Subject: [PATCH] last change, tone down some bright reds in my nvim view, this time folder labels in nvim-tree --- nvim/.config/nvim/lazy-lock.json | 1 + nvim/.config/nvim/lua/settings.lua | 10 ++++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/nvim/.config/nvim/lazy-lock.json b/nvim/.config/nvim/lazy-lock.json index d19f767..0d5dd45 100644 --- a/nvim/.config/nvim/lazy-lock.json +++ b/nvim/.config/nvim/lazy-lock.json @@ -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" }, diff --git a/nvim/.config/nvim/lua/settings.lua b/nvim/.config/nvim/lua/settings.lua index bac5831..fb26aec 100644 --- a/nvim/.config/nvim/lua/settings.lua +++ b/nvim/.config/nvim/lua/settings.lua @@ -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')