AstroNvim_template/lua/plugins/ui.lua

35 lines
805 B
Lua
Raw Normal View History

2024-01-03 23:15:06 +03:00
if true then return {} end -- REMOVE THIS LINE TO ACTIVATE THIS FILE
2024-01-20 08:40:08 +03:00
---@type LazySpec
2024-01-03 23:15:06 +03:00
return {
"AstroNvim/astroui",
---@type AstroUIOpts
opts = {
icons = {
-- configure the loading of the lsp in the status line
LSPLoading1 = "",
LSPLoading2 = "",
LSPLoading3 = "",
LSPLoading4 = "",
LSPLoading5 = "",
LSPLoading6 = "",
LSPLoading7 = "",
LSPLoading8 = "",
LSPLoading9 = "",
LSPLoading10 = "",
},
text_icons = {
-- configure the loading of the lsp in the status line
LSPLoading1 = "|",
LSPLoading2 = "/",
LSPLoading3 = "-",
LSPLoading4 = "\\",
-- configure neotree
FolderClosed = "+",
FolderEmpty = "-",
FolderOpen = "-",
},
},
}