From 8afd96f693d9ac0daeb04afcfed0b5a8b4dd8062 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Wed, 7 May 2025 07:46:58 -0400 Subject: Fixed Bug in dev-env that wiped .config --- .config/ghostty/config | 2 +- .emacs.d/init.el | 2 +- dev-env | 7 ++++++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.config/ghostty/config b/.config/ghostty/config index 5f93af7..11b3abb 100644 --- a/.config/ghostty/config +++ b/.config/ghostty/config @@ -1,3 +1,3 @@ theme = BlulocoDark font-family = "JetBrains Mono" -font-size = 17 +font-size = 14 diff --git a/.emacs.d/init.el b/.emacs.d/init.el index bfd10b9..8647291 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -17,7 +17,7 @@ (defvaralias 'c-basic-offset 'tab-width) ;; Font -(set-frame-font "Consolas 16" nil t) +(set-frame-font "JetBrains Mono 16" nil t) ;; Relative Line Numbers (display-line-numbers-mode) diff --git a/dev-env b/dev-env index 06e5055..d274d74 100755 --- a/dev-env +++ b/dev-env @@ -22,8 +22,13 @@ for script in $scripts; do copy_file "$script" "$target/bin" done +configs="$(find ./.config -mindepth 1 -maxdepth 1 -type d)" +for config in $configs; do + log $config + copy_dir $config "$HOME/.config" +done + log "Copying Configs" -copy_dir .config $HOME copy_dir .emacs.d $HOME copy_file ".config/.profile" $HOME copy_file ".config/shells/zsh/.zshrc" $HOME -- cgit v1.2.3