36 lines
1.0 KiB
Lua
36 lines
1.0 KiB
Lua
-- AstroUI provides the basis for configuring the AstroNvim User Interface
|
|
-- Configuration documentation can be found with `:h astroui`
|
|
|
|
---@type LazySpec
|
|
return {
|
|
'AstroNvim/astroui',
|
|
---@type AstroUIOpts
|
|
opts = {
|
|
colorscheme = 'tokyonight-moon',
|
|
-- AstroUI allows you to easily modify highlight groups easily for any and all colorschemes
|
|
highlights = {
|
|
init = { -- this table overrides highlights in all themes
|
|
-- Normal = { bg = "#000000" },
|
|
},
|
|
astrodark = { -- a table of overrides/changes when applying the astrotheme theme
|
|
-- Normal = { bg = "#000000" },
|
|
},
|
|
},
|
|
folding = false,
|
|
-- Icons can be configured throughout the interface
|
|
icons = {
|
|
-- configure the loading of the lsp in the status line
|
|
LSPLoading1 = '⠋',
|
|
LSPLoading2 = '⠙',
|
|
LSPLoading3 = '⠹',
|
|
LSPLoading4 = '⠸',
|
|
LSPLoading5 = '⠼',
|
|
LSPLoading6 = '⠴',
|
|
LSPLoading7 = '⠦',
|
|
LSPLoading8 = '⠧',
|
|
LSPLoading9 = '⠇',
|
|
LSPLoading10 = '⠏',
|
|
},
|
|
},
|
|
}
|