summaryrefslogtreecommitdiff
path: root/dotfiles/.config/nvim/lua/plugins/astroui.lua
diff options
context:
space:
mode:
authorDenis Chevalier <perso@denischevalier.fr>2026-08-03 21:09:25 +0200
committerDenis Chevalier <perso@denischevalier.fr>2026-08-03 21:09:25 +0200
commitfef7a7ef4fa31170ee78dfb774934feb84a88423 (patch)
treee88b5afd2feae6f9755e2ab345e6bca15a567d6a /dotfiles/.config/nvim/lua/plugins/astroui.lua
downloadpostinstall-fef7a7ef4fa31170ee78dfb774934feb84a88423.tar.gz
postinstall-fef7a7ef4fa31170ee78dfb774934feb84a88423.tar.bz2
postinstall-fef7a7ef4fa31170ee78dfb774934feb84a88423.zip
arch postinstall scripts
Diffstat (limited to 'dotfiles/.config/nvim/lua/plugins/astroui.lua')
-rw-r--r--dotfiles/.config/nvim/lua/plugins/astroui.lua39
1 files changed, 39 insertions, 0 deletions
diff --git a/dotfiles/.config/nvim/lua/plugins/astroui.lua b/dotfiles/.config/nvim/lua/plugins/astroui.lua
new file mode 100644
index 0000000..737a2fb
--- /dev/null
+++ b/dotfiles/.config/nvim/lua/plugins/astroui.lua
@@ -0,0 +1,39 @@
+if true then return {} end -- WARN: REMOVE THIS LINE TO ACTIVATE THIS FILE
+
+-- 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",
+ -- 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" },
+ },
+ },
+ -- 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 = "⠏",
+ },
+ },
+}