feat(ui): added example file
parent
51e96efe93
commit
f80d456010
|
@ -9,3 +9,4 @@
|
|||
-- vim.opt.wrap = false -- sets vim.opt.wrap
|
||||
|
||||
-- vim.g.mapleader = " " -- sets vim.g.mapleader
|
||||
-- vim.g.icons_enabled = false -- disable icons in the UI (disable if no nerd font is available)
|
||||
|
|
|
@ -0,0 +1,33 @@
|
|||
if true then return {} end -- REMOVE THIS LINE TO ACTIVATE THIS FILE
|
||||
|
||||
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 = "-",
|
||||
},
|
||||
},
|
||||
}
|
Loading…
Reference in New Issue