diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2025-05-07 07:46:58 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2025-05-07 07:46:58 -0400 |
| commit | 8afd96f693d9ac0daeb04afcfed0b5a8b4dd8062 (patch) | |
| tree | 099e58dc5770196a5ff3531e7b7ef7b6061cfe1c | |
| parent | f2fc0ce4c59dd6a08fdb46b856cf337c3f8bf9f5 (diff) | |
Fixed Bug in dev-env that wiped .config
| -rw-r--r-- | .config/ghostty/config | 2 | ||||
| -rw-r--r-- | .emacs.d/init.el | 2 | ||||
| -rwxr-xr-x | 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) @@ -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 |
