last change, tone down some bright reds in my nvim view, this time folder labels in nvim-tree
This commit is contained in:
@@ -6,6 +6,7 @@
|
|||||||
"helm-ls.nvim": { "branch": "main", "commit": "20df43509b02a3ce3c6b3eee254d6e2bffa9a370" },
|
"helm-ls.nvim": { "branch": "main", "commit": "20df43509b02a3ce3c6b3eee254d6e2bffa9a370" },
|
||||||
"lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" },
|
"lazy.nvim": { "branch": "main", "commit": "306a05526ada86a7b30af95c5cc81ffba93fef97" },
|
||||||
"mason.nvim": { "branch": "main", "commit": "16ba83bfc8a25f52bb545134f5bee082b195c460" },
|
"mason.nvim": { "branch": "main", "commit": "16ba83bfc8a25f52bb545134f5bee082b195c460" },
|
||||||
|
"mfd.nvim": { "branch": "master", "commit": "72ae627792960a7e490cb5242a78c570d02ba775" },
|
||||||
"neodev.nvim": { "branch": "main", "commit": "46aa467dca16cf3dfe27098042402066d2ae242d" },
|
"neodev.nvim": { "branch": "main", "commit": "46aa467dca16cf3dfe27098042402066d2ae242d" },
|
||||||
"nnn.nvim": { "branch": "master", "commit": "efe690293eee87558f034a83ed96157e52639cdb" },
|
"nnn.nvim": { "branch": "master", "commit": "efe690293eee87558f034a83ed96157e52639cdb" },
|
||||||
"nvim": { "branch": "main", "commit": "7365b8dede43a82ed1df741275b75333422e5402" },
|
"nvim": { "branch": "main", "commit": "7365b8dede43a82ed1df741275b75333422e5402" },
|
||||||
|
|||||||
@@ -11,12 +11,14 @@ vim.wo.relativenumber = true
|
|||||||
vim.g.mapleader = ' '
|
vim.g.mapleader = ' '
|
||||||
vim.o.splitright = true
|
vim.o.splitright = true
|
||||||
|
|
||||||
-- Tone down ember's coral folders/titles in nvim-tree (and anything else
|
-- Tone down ember's coral folders/titles so code stays the visual focus.
|
||||||
-- linking to Directory/Title) 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({
|
require('ember').setup({
|
||||||
on_highlights = function(hl, theme)
|
on_highlights = function(hl, theme)
|
||||||
hl.Directory = { 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.Title = { fg = theme.ui.fg_alt, bold = true }
|
||||||
|
hl.TabLineSel = { fg = theme.syn.steel, bg = theme.ui.bg, bold = true }
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
vim.cmd.colorscheme('ember-auto')
|
vim.cmd.colorscheme('ember-auto')
|
||||||
|
|||||||
Reference in New Issue
Block a user