Compare commits

..

3 Commits

Author SHA1 Message Date
vpatuta b2ffaa2cb3 feat: add markdown headers for treesitter 2023-11-07 09:12:57 +01:00
vpatuta 62b4ce7a9e feat: add light theme 2023-11-04 12:11:06 +01:00
fiplox 0323c96799 fix: underline lsp diagnostics 2023-07-02 13:43:21 +02:00
1 changed files with 14 additions and 0 deletions

View File

@ -293,6 +293,18 @@ M.setup = function()
['@storageclass'] = { link = 'StorageClass' }, ['@storageclass'] = { link = 'StorageClass' },
['@variable.builtin'] = { fg = c.wisteria }, ['@variable.builtin'] = { fg = c.wisteria },
['@variable'] = { fg = c.bg6 }, ['@variable'] = { fg = c.bg6 },
['@text.title.1.marker.markdown'] = { link = 'markdownH1' },
['@text.title.2.marker.markdown'] = { link = 'markdownH2' },
['@text.title.3.marker.markdown'] = { link = 'markdownH3' },
['@text.title.4.marker.markdown'] = { link = 'markdownH4' },
['@text.title.5.marker.markdown'] = { link = 'markdownH5' },
['@text.title.6.marker.markdown'] = { link = 'markdownH6' },
['@text.title.1.markdown'] = { link = 'markdownH1' },
['@text.title.2.markdown'] = { link = 'markdownH2' },
['@text.title.3.markdown'] = { link = 'markdownH3' },
['@text.title.4.markdown'] = { link = 'markdownH4' },
['@text.title.5.markdown'] = { link = 'markdownH5' },
['@text.title.6.markdown'] = { link = 'markdownH6' },
['@text.title'] = { link = 'Title' }, ['@text.title'] = { link = 'Title' },
['@text.uri'] = { link = 'Underlined' }, ['@text.uri'] = { link = 'Underlined' },
['@text.todo'] = { link = 'Todo' }, ['@text.todo'] = { link = 'Todo' },
@ -520,6 +532,8 @@ M.setup = function()
HopNextKey1 = { fg = c.light_blue }, HopNextKey1 = { fg = c.light_blue },
HopNextKey2 = { fg = c.wisteria1 }, HopNextKey2 = { fg = c.wisteria1 },
HopUnmatched = { fg = c.bg5 }, HopUnmatched = { fg = c.bg5 },
BufferManagerModified = { fg = c.yellow },
} }
--[[ for group, hl in pairs(config.overrides) do --[[ for group, hl in pairs(config.overrides) do