This commit is contained in:
Krishna Ayyalasomayajula
2026-05-09 12:41:44 -05:00
parent 216e0f166d
commit 01e226bbd7
5 changed files with 55 additions and 8 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
return {
"AstroNvim/astrocommunity",
{ import = "astrocommunity.colorscheme.catppuccin" },
{ import = "astrocommunity.colorscheme.github-nvim-theme" },
{ import = "astrocommunity.markdown-and-latex.vimtex" },
}
+15 -6
View File
@@ -9,14 +9,23 @@ return {
---@type AstroUIOpts
opts = {
-- change colorscheme
colorscheme = "catppuccin",
colorscheme = "github_dark_high_contrast",
-- 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" },
init = {},
github_dark_high_contrast = {
CursorLine = { bg = "#111111" },
CursorLineNr = { fg = "#ffffff", bold = true },
FloatBorder = { fg = "#8b949e", bg = "#000000" },
LineNr = { fg = "#6e7681" },
Normal = { bg = "#000000" },
NormalFloat = { bg = "#000000" },
Pmenu = { bg = "#000000" },
PmenuSel = { fg = "#ffffff", bg = "#1f2328", bold = true },
SignColumn = { bg = "#000000" },
StatusLine = { fg = "#ffffff", bg = "#111111" },
TabLineSel = { fg = "#ffffff", bg = "#111111", bold = true },
Visual = { bg = "#1f2328" },
},
},
-- Icons can be configured throughout the interface
+14
View File
@@ -0,0 +1,14 @@
return {
"projekt0n/github-nvim-theme",
main = "github-theme",
opts = {
options = {
styles = {
comments = "NONE",
},
inverse = {
visual = true,
},
},
},
}
+23
View File
@@ -0,0 +1,23 @@
return {
{
"amansingh-afk/milli.nvim",
lazy = false,
config = function() require("milli").snacks { splash = "blackhole", loop = true } end,
},
{
"folke/snacks.nvim",
dependencies = { "amansingh-afk/milli.nvim" },
opts = function(_, opts)
local splash = require("milli").load { splash = "blackhole" }
opts.dashboard = opts.dashboard or {}
opts.dashboard.preset = opts.dashboard.preset or {}
opts.dashboard.preset.header = table.concat(splash.frames[1], "\n")
opts.dashboard.sections = {
{ section = "header", padding = 2 },
{ section = "keys", gap = 1, padding = 2 },
{ section = "startup" },
}
end,
},
}