diff --git a/dots/.config/nvim/lua/plugins/configs/headlines.lua b/dots/.config/nvim/lua/plugins/configs/headlines.lua index 264f7260..13290efa 100644 --- a/dots/.config/nvim/lua/plugins/configs/headlines.lua +++ b/dots/.config/nvim/lua/plugins/configs/headlines.lua @@ -2,6 +2,30 @@ return { { "lukas-reineke/headlines.nvim", dependencies = "nvim-treesitter/nvim-treesitter", + opts = function() + local bullets = { + "󰀘", + "", + "󰺕", + "", + "󰬪", + "󱆭", + } + return { + markdown = { + bullets = bullets, + }, + rmd = { + bullets = bullets, + }, + norg = { + bullets = bullets + }, + org = { + bullets = bullets + } + } + end, config = true, ft = { "markdown", "norg", "rmd", "org" }, },