From e53a880e75eb5deee85b1a7b2449c0990db361ba Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Sun, 25 Jan 2026 21:13:59 +0200 Subject: [PATCH] refactor(config): moves theme import to general Moves theme import from top-level to the general section for better organization. --- config/alacritty/alacritty.toml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/config/alacritty/alacritty.toml b/config/alacritty/alacritty.toml index 43ee673..4731304 100644 --- a/config/alacritty/alacritty.toml +++ b/config/alacritty/alacritty.toml @@ -1,8 +1,3 @@ -import = [ - # Default to night if the copied one doesn't exist. - "~/.dotfiles/config/alacritty/theme-night.toml", - "~/.config/alacritty/theme-active.toml" -] [env] TERM = "xterm-256color" @@ -50,3 +45,10 @@ lines = 75 [window.padding] x = 5 y = 5 + +[general] +import = [ + # Default to night if the copied one doesn't exist. + "~/.dotfiles/config/alacritty/theme-night.toml", + "~/.config/alacritty/theme-active.toml" +]