diff options
author | Raymaekers Luca <luca@spacehb.net> | 2025-01-11 13:19:46 +0100 |
---|---|---|
committer | Raymaekers Luca <luca@spacehb.net> | 2025-01-11 13:19:46 +0100 |
commit | 01437ba9839c120ac19f34fd8c62704c10b81796 (patch) | |
tree | 65b06a4ba85fd7744118eec178040ff9991b6e78 /after/ftplugin/markdown.lua | |
parent | 02cd73cf34dd50f75852257a1ae08eaed7985398 (diff) |
checkpoint
Diffstat (limited to 'after/ftplugin/markdown.lua')
-rw-r--r-- | after/ftplugin/markdown.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/after/ftplugin/markdown.lua b/after/ftplugin/markdown.lua index 6e5e39f..3c59d77 100644 --- a/after/ftplugin/markdown.lua +++ b/after/ftplugin/markdown.lua @@ -1,8 +1,8 @@ -- lower level in purple and red -vim.api.nvim_set_hl(0, "MDdepthTwo", { fg = require("nord.colors").palette.aurora.purple }) -vim.fn.matchadd("MDdepthTwo", "^##") -vim.api.nvim_set_hl(0, "MDdepthThree", { fg = require("nord.colors").palette.aurora.red }) -vim.fn.matchadd("MDdepthThree", "^###\\+") +vim.api.nvim_set_hl(0, "MDdepthTwo", { fg = require("nord.colors").palette.aurora.orange }) +vim.api.nvim_set_hl(0, "MDdepthThree", { fg = require("nord.colors").palette.aurora.purple }) +vim.fn.matchadd("MDdepthTwo", "^##\\([^#].*\\|$\\)") -- Either '##' or '##[^#]*' +vim.fn.matchadd("MDdepthThree", "^###\\([^#].*\\|$\\)") -- definitions vim.api.nvim_set_hl(0, "MDDefs", { fg = require("nord.colors").palette.frost.ice }) vim.fn.matchadd("MDDefs", "^[[:space:]]*\\([-*]\\|[0-9]\\+[.)]\\)[^:]\\+::") |