Skip to content

Commit

Permalink
Merge branch 'master' of github.com:peplin/dotfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
peplin committed Mar 1, 2016
2 parents a0757a8 + 881af64 commit e3c35d0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion line-package-install.sh
Expand Up @@ -95,7 +95,7 @@ gmrun
xmonad-contrib
libnotify
dunst
dmenu-xft
dmenu
gnome-themes-standard
xautolock
slock
Expand Down
4 changes: 2 additions & 2 deletions system/aliases.zsh
Expand Up @@ -10,8 +10,8 @@ if [ "$TERM" != "dumb" ]; then
alias ls='ls --group-directories-first --color=auto'
fi

alias ll='ls -lh'
alias la='ls -lha'
alias ll='ls -lNh'
alias la='ls -lNha'

alias ..='cd ..'
function cdls() {
Expand Down
6 changes: 4 additions & 2 deletions tmux/env.zsh
@@ -1,5 +1,7 @@
test $SSH_AUTH_SOCK && [[ $SSH_AUTH_SOCK != "/tmp/ssh-agent-$USER-screen" ]] && \
ln -sf "$SSH_AUTH_SOCK" "/tmp/ssh-agent-$USER-screen"
if [[ -S "$SSH_AUTH_SOCK" && ! -h "$SSH_AUTH_SOCK" ]]; then
ln -sf "$SSH_AUTH_SOCK" ~/.ssh/ssh_auth_sock;
fi
export SSH_AUTH_SOCK=~/.ssh/ssh_auth_sock;

if [ $SSH_TTY ] && [ ! $WINDOW ]; then
if [[ -z "$TMUX" ]] ;then
Expand Down
3 changes: 3 additions & 0 deletions tmux/tmux.conf.symlink
Expand Up @@ -19,3 +19,6 @@ set -g default-command "${SHELL}"

# Make control-arrows work
set-window-option -g xterm-keys on

set -g update-environment -r
setenv -g SSH_AUTH_SOCK $HOME/.ssh/ssh_auth_sock

0 comments on commit e3c35d0

Please sign in to comment.