From 3228751410f1c15344c8b840b3b72a0e59d918f0 Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Mon, 8 Jun 2015 14:55:14 +0200 Subject: [PATCH] Remove timestamps from files, we are using Git Use "git log" to see all the glory! ;-) --- alex.zsh-theme | 1 - plugins/0_console/0_console.plugin.zsh | 1 - plugins/1_local/1_local.plugin.zsh | 1 - plugins/5_dev_env/5_dev_env.plugin.zsh | 1 - plugins/accounting/accounting.plugin.zsh | 1 - plugins/boot2docker/boot2docker.plugin.zsh | 1 - plugins/ccache/ccache.plugin.zsh | 1 - plugins/editor_select/editor_select.plugin.zsh | 1 - plugins/keychain/keychain.plugin.zsh | 1 - plugins/reminders/reminders.plugin.zsh | 1 - plugins/ssh/ssh.plugin.zsh | 1 - plugins/thefuck/thefuck.plugin.zsh | 1 - plugins/z9_local_conf/z9_local_conf.plugin.zsh | 1 - 13 files changed, 13 deletions(-) diff --git a/alex.zsh-theme b/alex.zsh-theme index 7b88935..c01b616 100644 --- a/alex.zsh-theme +++ b/alex.zsh-theme @@ -1,6 +1,5 @@ # Alex "oh my ZSH" theme # Based on the "Sunrise" theme, thanks! -# 2015-05-05, alex@barton.de # Color shortcuts; %B sets bold text B=$fg_no_bold[blue] diff --git a/plugins/0_console/0_console.plugin.zsh b/plugins/0_console/0_console.plugin.zsh index 0cc375b..c0ff241 100644 --- a/plugins/0_console/0_console.plugin.zsh +++ b/plugins/0_console/0_console.plugin.zsh @@ -1,5 +1,4 @@ # 0_console.plugin.zsh -# 2015-03-23, alex@barton.de eval `tset -Qs` export TERM diff --git a/plugins/1_local/1_local.plugin.zsh b/plugins/1_local/1_local.plugin.zsh index d64845d..d7303d1 100644 --- a/plugins/1_local/1_local.plugin.zsh +++ b/plugins/1_local/1_local.plugin.zsh @@ -1,5 +1,4 @@ # 1_local.plugin.zsh -# 2015-03-27, alex@barton.de [ -d "/usr/local/home" -a ! -d "/usr/local/home/$LOGNAME" ] \ && mkdir "/usr/local/home/$LOGNAME" >/dev/null 2>&1 diff --git a/plugins/5_dev_env/5_dev_env.plugin.zsh b/plugins/5_dev_env/5_dev_env.plugin.zsh index a52aed1..2977ff8 100644 --- a/plugins/5_dev_env/5_dev_env.plugin.zsh +++ b/plugins/5_dev_env/5_dev_env.plugin.zsh @@ -1,5 +1,4 @@ # 5_dev_env.plugin.zsh -# 2015-05-05, alex@barton.de # SSH wrapper for ssh_wrapper in \ diff --git a/plugins/accounting/accounting.plugin.zsh b/plugins/accounting/accounting.plugin.zsh index f86a1dd..837f643 100644 --- a/plugins/accounting/accounting.plugin.zsh +++ b/plugins/accounting/accounting.plugin.zsh @@ -1,5 +1,4 @@ # accounting.plugin.zsh -# 2015-05-09, alex@barton.de alias lasth='last | head -n $((LINES-1))' alias lastf='last | grep -v "^$LOGNAME"' diff --git a/plugins/boot2docker/boot2docker.plugin.zsh b/plugins/boot2docker/boot2docker.plugin.zsh index 9588ff2..9813acd 100644 --- a/plugins/boot2docker/boot2docker.plugin.zsh +++ b/plugins/boot2docker/boot2docker.plugin.zsh @@ -1,5 +1,4 @@ # boot2docker.plugin.zsh -# 2015-04-18, alex@barton.de boot2docker status | fgrep "running" >/dev/null if [ $? -eq 0 ]; then diff --git a/plugins/ccache/ccache.plugin.zsh b/plugins/ccache/ccache.plugin.zsh index a3e23fc..b34a962 100644 --- a/plugins/ccache/ccache.plugin.zsh +++ b/plugins/ccache/ccache.plugin.zsh @@ -1,5 +1,4 @@ # ccache.plugin.zsh -# 2015-03-27, alex@barton.de # Setup environment for ccache, if installed export CCACHE_DIR="$XDG_CACHE_HOME/ccache" diff --git a/plugins/editor_select/editor_select.plugin.zsh b/plugins/editor_select/editor_select.plugin.zsh index f592886..cd75883 100644 --- a/plugins/editor_select/editor_select.plugin.zsh +++ b/plugins/editor_select/editor_select.plugin.zsh @@ -1,5 +1,4 @@ # editor-select.plugin.zsh -# 2015-04-02, alex@barton.de if [ -z "$EDITOR" ]; then # Check "atom" diff --git a/plugins/keychain/keychain.plugin.zsh b/plugins/keychain/keychain.plugin.zsh index e60c094..c1c6fbb 100644 --- a/plugins/keychain/keychain.plugin.zsh +++ b/plugins/keychain/keychain.plugin.zsh @@ -1,4 +1,3 @@ # keychain.plugin.zsh -# 2015-03-27, alex@barton.de eval $(keychain --agents ssh --eval --quick --quiet) diff --git a/plugins/reminders/reminders.plugin.zsh b/plugins/reminders/reminders.plugin.zsh index 26bf963..cfd7a15 100644 --- a/plugins/reminders/reminders.plugin.zsh +++ b/plugins/reminders/reminders.plugin.zsh @@ -1,5 +1,4 @@ # reminders.plugin.zsh -# 2015-05-26, alex@barton.de # Show reminders (once every 60 minutes) if [ -z `find ~/.last_reminder -mmin -60 2>/dev/null` ]; then diff --git a/plugins/ssh/ssh.plugin.zsh b/plugins/ssh/ssh.plugin.zsh index 3312362..ccb3b5c 100644 --- a/plugins/ssh/ssh.plugin.zsh +++ b/plugins/ssh/ssh.plugin.zsh @@ -1,5 +1,4 @@ # ssh.plugin.zsh -# 2015-03-17, alex@barton.de alias ssh="\ssh -o 'StrictHostKeyChecking yes'" alias sshnew="\ssh -o 'StrictHostKeyChecking no'" diff --git a/plugins/thefuck/thefuck.plugin.zsh b/plugins/thefuck/thefuck.plugin.zsh index f2cc798..4042544 100644 --- a/plugins/thefuck/thefuck.plugin.zsh +++ b/plugins/thefuck/thefuck.plugin.zsh @@ -1,4 +1,3 @@ # thefuck.plugin.zsh -# 2015-05-26, alex@barton.de alias fuck='eval $(thefuck $(fc -ln -1 | tail -n 1)); fc -R' diff --git a/plugins/z9_local_conf/z9_local_conf.plugin.zsh b/plugins/z9_local_conf/z9_local_conf.plugin.zsh index be365dd..63eeff6 100644 --- a/plugins/z9_local_conf/z9_local_conf.plugin.zsh +++ b/plugins/z9_local_conf/z9_local_conf.plugin.zsh @@ -1,5 +1,4 @@ # z9_local_conf.plugin.zsh -# 2015-05-24, alex@barton.de [ -n "$HOSTNAME" ] || HOSTNAME=$( hostname ) export HOSTNAME -- 2.39.2