diff options
| author | Josh <joshott16@gmail.com> | 2025-07-25 12:00:25 -0400 |
|---|---|---|
| committer | Josh <joshott16@gmail.com> | 2025-07-25 12:00:25 -0400 |
| commit | 1122286fa84b7a17470bad8f65c1d87b62acb89e (patch) | |
| tree | dcad468130f8e6b1658de0bcb7df2ea7d583b211 /nvim/lua/commands.lua | |
| parent | 8dade9fc775f5b69208632f5329024d47134f3e7 (diff) | |
| download | dotfiles-1122286fa84b7a17470bad8f65c1d87b62acb89e.tar.gz dotfiles-1122286fa84b7a17470bad8f65c1d87b62acb89e.zip | |
markdown syntax highlighting change
Diffstat (limited to 'nvim/lua/commands.lua')
| -rw-r--r-- | nvim/lua/commands.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/nvim/lua/commands.lua b/nvim/lua/commands.lua index 45b674f..d75412f 100644 --- a/nvim/lua/commands.lua +++ b/nvim/lua/commands.lua @@ -6,6 +6,9 @@ vim.api.nvim_create_autocmd("ColorScheme", { require("feline").setup({ components = require("neopywal.theme.plugins.feline").get(), }) + + vim.api.nvim_set_hl(0, '@markup.heading.1.markdown', { link = 'DiffText' }) + vim.api.nvim_set_hl(0, 'markdownH1', { link = 'DiffText' }) end, }) |