refactor(nvim): change markdown header appearance

This commit is contained in:
Price Hiller 2023-06-05 12:54:49 -05:00
parent 913c053db9
commit 046158f471
Signed by: Price
SSH Key Fingerprint: SHA256:Y4S9ZzYphRn1W1kbJerJFO6GGsfu9O70VaBSxJO7dF8
2 changed files with 6 additions and 10 deletions

View File

@ -132,6 +132,12 @@ require("kanagawa").setup({
Headline = { bg = colors.sumiInk2 },
HeadlineReversed = { bg = colors.sumiInk1 },
LspInlayHint = { link = "Comment", italic = true },
['@text.title.1.marker.markdown'] = { fg = colors.surimiOrange },
['@text.title.2.marker.markdown'] = { fg = colors.surimiOrange },
['@text.title.3.marker.markdown'] = { fg = colors.surimiOrange },
['@text.title.4.marker.markdown'] = { fg = colors.surimiOrange },
['@text.title.5.marker.markdown'] = { fg = colors.surimiOrange },
['@text.title.6.marker.markdown'] = { fg = colors.surimiOrange }
}
return overrides

View File

@ -755,16 +755,6 @@ lazy.setup({
lazy = true,
},
-- Improved Visuals for Documentation
{
"lukas-reineke/headlines.nvim",
opts = {},
ft = {
"markdown",
"norg",
},
},
-- Convert numbers between binary, decimal, & hex
{
"skosulor/nibbler",