16 lines
485 B
Lua
16 lines
485 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 = "astrodark",
|
|
colorscheme = "catppuccin-mocha",
|
|
},
|
|
}
|