From 2f4095512a9ea2b35f83b3a13be06ef485aa3dd0 Mon Sep 17 00:00:00 2001 From: Natercio Moniz Date: Tue, 12 Aug 2025 13:36:38 +0100 Subject: [PATCH] use tokyonight colorscheme --- lua/community.lua | 2 ++ lua/plugins/astroui.lua | 27 ++++++++++++--------------- lua/plugins/mason.lua | 4 ++++ 3 files changed, 18 insertions(+), 15 deletions(-) diff --git a/lua/community.lua b/lua/community.lua index f4ad376..7b39f83 100644 --- a/lua/community.lua +++ b/lua/community.lua @@ -6,6 +6,8 @@ return { 'AstroNvim/astrocommunity', + { import = 'astrocommunity.colorscheme.tokyonight-nvim' }, + { import = 'astrocommunity.pack.lua' }, { import = 'astrocommunity.pack.go' }, } diff --git a/lua/plugins/astroui.lua b/lua/plugins/astroui.lua index 0b0f2ba..756cb5e 100644 --- a/lua/plugins/astroui.lua +++ b/lua/plugins/astroui.lua @@ -1,15 +1,12 @@ -- 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", + 'AstroNvim/astroui', ---@type AstroUIOpts opts = { - -- change colorscheme - colorscheme = "astrodark", + 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 @@ -22,16 +19,16 @@ return { -- 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 = "⠏", + LSPLoading1 = '⠋', + LSPLoading2 = '⠙', + LSPLoading3 = '⠹', + LSPLoading4 = '⠸', + LSPLoading5 = '⠼', + LSPLoading6 = '⠴', + LSPLoading7 = '⠦', + LSPLoading8 = '⠧', + LSPLoading9 = '⠇', + LSPLoading10 = '⠏', }, }, } diff --git a/lua/plugins/mason.lua b/lua/plugins/mason.lua index 04abff2..e8c3f4c 100644 --- a/lua/plugins/mason.lua +++ b/lua/plugins/mason.lua @@ -7,6 +7,10 @@ return { opts = { -- Make sure to use the names found in `:Mason` ensure_installed = { + 'jq', + 'vacuum', -- openapi + 'bash-language-server', + -- install any other package 'tree-sitter-cli', },