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 {
'AstroNvim/astrocommunity',
{ import = 'astrocommunity.colorscheme.tokyonight-nvim' },
{ import = 'astrocommunity.pack.lua' },
{ import = 'astrocommunity.pack.go' },
}

View File

@@ -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 = '',
},
},
}

View File

@@ -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',
},