20 lines
749 B
Lua
20 lines
749 B
Lua
-- AstroUI provides the basis for configuring the AstroNvim User Interface
|
|
-- Configuration documentation can be found with `:h astroui`
|
|
-- NOTE: We highly recommend setting up the Lua Language Server (`:LspInstall lua_ls`)
|
|
-- as this provides autocomplete and documentation while editing
|
|
|
|
---@type LazySpec
|
|
return {
|
|
"AstroNvim/astroui",
|
|
---@type AstroUIOpts
|
|
opts = {
|
|
-- change colorscheme
|
|
colorscheme = "bamboo",
|
|
-- AstroUI allows you to easily modify highlight groups easily for any and all colorschemes
|
|
highlights = require "plugins.configs.ui.highlights",
|
|
-- Icons can be configured throughout the interface
|
|
icons = require "plugins.configs.ui.icons",
|
|
status = require "plugins.configs.ui.status",
|
|
},
|
|
}
|