nvim/lua/user/plugins/editor/headlines.lua
2023-10-28 00:00:00 +07:00

24 lines
490 B
Lua

local options = {
headline_highlights = {
'Headline1',
'Headline2',
'Headline3',
'Headline4',
'Headline5',
'Headline6',
},
codeblock_highlight = 'CodeBlock',
dash_highlight = 'Dash',
dash_string = '-',
quote_highlight = 'Quote',
quote_string = '',
fat_headlines = false,
fat_headline_upper_string = '',
fat_headline_lower_string = '🬂',
}
return {
markdown = options,
org = options,
}