diff options
author | David Luevano Alvarado <david@luevano.xyz> | 2024-10-21 05:48:36 -0600 |
---|---|---|
committer | David Luevano Alvarado <david@luevano.xyz> | 2024-10-21 05:48:36 -0600 |
commit | bdbe1ed5ba694822ce47f3c915a70d6c3ffb4066 (patch) | |
tree | dd7ebec2f12324d259ef10efe46197bb40a1126a /lua/plugins/headlines.lua | |
parent | a50a5f55ae3af9493f76f0aae8a53167eaee79e1 (diff) |
feat: better nord theme and markdown hl
Diffstat (limited to 'lua/plugins/headlines.lua')
-rw-r--r-- | lua/plugins/headlines.lua | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/lua/plugins/headlines.lua b/lua/plugins/headlines.lua deleted file mode 100644 index 97d2c7f..0000000 --- a/lua/plugins/headlines.lua +++ /dev/null @@ -1,34 +0,0 @@ -return { - "lukas-reineke/headlines.nvim", - dependencies = "nvim-treesitter/nvim-treesitter", - opts = { - markdown = { - headline_highlights = { - "Headline1", - "Headline2", - "Headline3", - "Headline4", - "Headline5", - "Headline6", - }, - codeblock_highlight = "CodeBlock", - dash_highlight = "Dash", - quote_highlight = "Quote", - bullet_highlights = { - -- "@text.title.1.marker.markdown", - -- "@text.title.2.marker.markdown", - -- "@text.title.3.marker.markdown", - -- "@text.title.4.marker.markdown", - -- "@text.title.5.marker.markdown", - -- "@text.title.6.marker.markdown", - }, - bullets = {}, - -- bullets = { "◉", "○", "✸", "✿" }, - dash_string = "-", - quote_string = "┃", - fat_headlines = false, - fat_headline_upper_string = "▃", - fat_headline_lower_string = "🬂", - }, - }, -} |