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