feat(ui): added example file

pull/6/head
manuuurino 2024-01-03 21:15:06 +01:00 committed by Micah Halter
parent 51e96efe93
commit f80d456010
2 changed files with 34 additions and 0 deletions

View File

@ -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)

33
lua/plugins/ui.lua Normal file
View File

@ -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 = "-",
},
},
}