feat: Fix markdown provider icon kind

Closes #2
This commit is contained in:
hedy
2023-11-12 13:55:22 +08:00
parent e5d95ff69a
commit a616f44aea
3 changed files with 98 additions and 95 deletions

View File

@@ -3,6 +3,11 @@ local M = {}
local providers = {
'outline/providers/nvim-lsp',
'outline/providers/coc',
-- NOTE: There is in fact a markdown LSP that can provide symbols. However
-- on buffer open the LSP may not be attached immediately. Before the LSP is
-- ready if the user opens the outline, our own markdown provider will be
-- used. After refreshing/reopening, the provider will then switch to the LSP
-- (if the user has a markdown LSP).
'outline/providers/markdown',
}