Skip to content

Commit aea9acf

Browse files
Brad Lhotskyreyjrar
authored andcommitted
Aliases updated, movein script patched to not use X11 forwarding, and
update gitconfig.
1 parent f33e098 commit aea9acf

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

ackrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
--type-set=puppet=.pp
22
--type-set=erb=.erb
3+
--type-add=mason=.comp

bash.d/15-aliases.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ alias c="contents"
1515
# Get Aliases
1616
alias gg='git grep'
1717

18+
# Hive
19+
command -v rlwrap &> /dev/null
20+
rc=$?
21+
if [[ "$rc" -eq "0" ]]; then
22+
alias rlhive='rlwrap -i --prompt-colour=yellow -f ~/.hive_completion -a hive $*'
23+
fi;
24+
1825
# Some commands can be customized with ENV Variables
1926
export LESS="-RM"
2027

gitconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@
1818
hist = log --graph --color=always --pretty='[%C(cyan)%h%Creset]%C(bold cyan)%d%Creset %s' --all
1919
[branch]
2020
autosetuprebase = always
21+
[push]
22+
default = upstream
23+
[pull]
24+
rebase = true

support/movein.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fi;
1313

1414
HOST=$1
1515

16-
SSH="/usr/bin/ssh"
16+
SSH="/usr/bin/ssh -x"
1717
SCP="/usr/bin/scp"
1818
RSYNC="/usr/bin/rsync"
1919

0 commit comments

Comments
 (0)