chore: uptodate v5

This commit is contained in:
huyjaky
2025-08-22 14:43:56 +07:00
commit e553f7585d
38 changed files with 1730 additions and 0 deletions

21
lua/plugins/astroui.lua Normal file
View File

@@ -0,0 +1,21 @@
-- 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",
lazygit = false,
},
}