use tokyonight colorscheme

This commit is contained in:
Natercio Moniz
2025-08-12 13:36:38 +01:00
parent 34ea1ee888
commit 2f4095512a
3 changed files with 18 additions and 15 deletions

View File

@@ -6,6 +6,8 @@
return { return {
'AstroNvim/astrocommunity', 'AstroNvim/astrocommunity',
{ import = 'astrocommunity.colorscheme.tokyonight-nvim' },
{ import = 'astrocommunity.pack.lua' }, { import = 'astrocommunity.pack.lua' },
{ import = 'astrocommunity.pack.go' }, { import = 'astrocommunity.pack.go' },
} }

View File

@@ -1,15 +1,12 @@
-- AstroUI provides the basis for configuring the AstroNvim User Interface -- AstroUI provides the basis for configuring the AstroNvim User Interface
-- Configuration documentation can be found with `:h astroui` -- 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 ---@type LazySpec
return { return {
"AstroNvim/astroui", 'AstroNvim/astroui',
---@type AstroUIOpts ---@type AstroUIOpts
opts = { opts = {
-- change colorscheme colorscheme = 'tokyonight-moon',
colorscheme = "astrodark",
-- AstroUI allows you to easily modify highlight groups easily for any and all colorschemes -- AstroUI allows you to easily modify highlight groups easily for any and all colorschemes
highlights = { highlights = {
init = { -- this table overrides highlights in all themes init = { -- this table overrides highlights in all themes
@@ -22,16 +19,16 @@ return {
-- Icons can be configured throughout the interface -- Icons can be configured throughout the interface
icons = { icons = {
-- configure the loading of the lsp in the status line -- configure the loading of the lsp in the status line
LSPLoading1 = "", LSPLoading1 = '',
LSPLoading2 = "", LSPLoading2 = '',
LSPLoading3 = "", LSPLoading3 = '',
LSPLoading4 = "", LSPLoading4 = '',
LSPLoading5 = "", LSPLoading5 = '',
LSPLoading6 = "", LSPLoading6 = '',
LSPLoading7 = "", LSPLoading7 = '',
LSPLoading8 = "", LSPLoading8 = '',
LSPLoading9 = "", LSPLoading9 = '',
LSPLoading10 = "", LSPLoading10 = '',
}, },
}, },
} }

View File

@@ -7,6 +7,10 @@ return {
opts = { opts = {
-- Make sure to use the names found in `:Mason` -- Make sure to use the names found in `:Mason`
ensure_installed = { ensure_installed = {
'jq',
'vacuum', -- openapi
'bash-language-server',
-- install any other package -- install any other package
'tree-sitter-cli', 'tree-sitter-cli',
}, },