From e02186551a3967366a9374f97f2282a6a74f8155 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 19 Mar 2026 15:06:24 -0400 Subject: [PATCH] Use extracted colorscheme --- themes/lumon/neovim.lua | 49 +++-------------------------------------- 1 file changed, 3 insertions(+), 46 deletions(-) diff --git a/themes/lumon/neovim.lua b/themes/lumon/neovim.lua index 4925afac..0c6407c8 100644 --- a/themes/lumon/neovim.lua +++ b/themes/lumon/neovim.lua @@ -1,56 +1,13 @@ return { { - "bjarneo/aether.nvim", - branch = "v2", - name = "aether", + "omacom-io/lumon.nvim", + name = "lumon", priority = 1000, - opts = { - transparent = false, - colors = { - -- Background colors - bg = "#1b2d40", - bg_dark = "#16242d", - bg_highlight = "#355066", - - -- Foreground colors - -- fg: Object properties, builtin types, builtin variables, member access, default text - fg = "#c7d2de", - -- fg_dark: Inactive elements, statusline, secondary text - fg_dark = "#c7d2de", - -- comment: Line highlight, gutter elements, disabled states - comment = "#355066", - - -- Accent colors - -- red: Errors, diagnostics, tags, deletions, breakpoints - red = "#6e9fca", - -- orange: Constants, numbers, current line number, git modifications - orange = "#8fb9dc", - -- yellow: Types, classes, constructors, warnings, numbers, booleans - yellow = "#86b6da", - -- green: Comments, strings, success states, git additions - green = "#79abd2", - -- cyan: Parameters, regex, preprocessor, hints, properties - cyan = "#b5deef", - -- blue: Functions, keywords, directories, links, info diagnostics - blue = "#92c7e7", - -- purple: Storage keywords, special keywords, identifiers, namespaces - purple = "#9fcfe9", - -- magenta: Function declarations, exception handling, tags - magenta = "#b3d7ec", - }, - }, - config = function(_, opts) - require("aether").setup(opts) - vim.cmd.colorscheme("aether") - - -- Enable hot reload - require("aether.hotreload").setup() - end, }, { "LazyVim/LazyVim", opts = { - colorscheme = "aether", + colorscheme = "lumon", }, }, }