aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2015-02-23 08:45:42 +0100
committerGravatar Tom van der Lee <t0m.vd.l33@gmail.com>2015-02-23 08:45:42 +0100
commitfcd8159ba89171ce1d45544d24bfed2146ed221f (patch)
tree53fe8c2b992e63fa0f3ca8a76348db5dcf088e9e
parentca0a1a2248460d3efaa723f396f77b2d73299d3a (diff)
downloaddotfiles-fcd8159ba89171ce1d45544d24bfed2146ed221f.tar.gz
dotfiles-fcd8159ba89171ce1d45544d24bfed2146ed221f.tar.bz2
dotfiles-fcd8159ba89171ce1d45544d24bfed2146ed221f.zip
Added vim function to bashrc
-rw-r--r--bashrc4
1 files changed, 4 insertions, 0 deletions
diff --git a/bashrc b/bashrc
index 36bb569..72327ef 100644
--- a/bashrc
+++ b/bashrc
@@ -24,6 +24,10 @@ man() {
24 man "$@" 24 man "$@"
25} 25}
26 26
27vim() {
28 (cd $@ && /usr/bin/vim) || /usr/bin/vim $@
29}
30
27alias ls='ls --color=auto' 31alias ls='ls --color=auto'
28alias jblive='vlc rtmp://videocdn-us.geocdn.scaleengine.net/jblive/live/jblive.stream 2> /dev/null &' 32alias jblive='vlc rtmp://videocdn-us.geocdn.scaleengine.net/jblive/live/jblive.stream 2> /dev/null &'
29 33