From 10268bfc4bda2e52f0e3d16526ac740fcf0bb252 Mon Sep 17 00:00:00 2001 From: Graham Hall Date: Fri, 3 Jan 2025 00:10:03 -0500 Subject: [PATCH] 2025-01-03 --- scripts/commit-dotfiles.sh | 2 +- zsh_config/ssh.zsh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/commit-dotfiles.sh b/scripts/commit-dotfiles.sh index 12710ba..48494a5 100644 --- a/scripts/commit-dotfiles.sh +++ b/scripts/commit-dotfiles.sh @@ -7,7 +7,7 @@ cd ~/dotfiles || exit if [[ $(git status --porcelain) ]]; then # There are changes, commit them git add . - git commit -m "$(date +"%Y-%m-%d %H:%M:%S")" + git commit -m "$(date +"%Y-%m-%d")" git push else echo "No changes to commit." diff --git a/zsh_config/ssh.zsh b/zsh_config/ssh.zsh index edbeb00..48af622 100644 --- a/zsh_config/ssh.zsh +++ b/zsh_config/ssh.zsh @@ -3,5 +3,5 @@ if [[ -n $SSH_CONNECTION ]]; then export VISUAL='/opt/homebrew/bin/micro' export EDITOR='/opt/homebrew/bin/micro' else - export EDITOR='mvim' + export EDITOR='bbedit' fi