blob: c74f96684cf4f473e5cb26878bf96116dfa5c849 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# beautifying ls command
alias ls='ls --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
alias ll='ls -l --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
alias la='ls -la --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F'
# vim stuff
export EDITOR=vim
export VISUAL=vim
alias vi=vim
# git completion
source $HOME/.gitcompletion.sh
# prompt with git completion
PS1='\u:\w$(__git_ps1 "\[\033[0;32m\]@\[\033[1;32m\]%s\[\033[0m\]\]") $ '
# Rake completion
complete -C $HOME/.rake_completion -o default rake
# Paths
export KDEDIR=/home/mssola/kde
export KDEDIRS=$KDEDIR
export KDEV=$HOME/Projects/kde
export RUBY=$KDEV/kdev-ruby
export PATH=$KDEDIR/bin:$PATH
export LD_LIBRARY_PATH=$KDEDIR/lib:$LD_LIBRARY_PATH
export XDG_DATA_DIRS=$XDG_DATA_DIRS:$KDEDIR/share
# Load RVM into a shell session *as a function*
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
# Including shortucts, idea from https://github.com/fxn/dotfiles
GO_SHORTCUTS=(
home
$HOME
rem
$HOME/Desktop/fib/ac/pxc/rem
ruby
$HOME/Projects/kde/kdev-ruby
)
function go {
local target=$1
local len=${#GO_SHORTCUTS[@]}
for (( i=0; i<$len; i+=2 ));
do
if [[ "$1" = "${GO_SHORTCUTS[$i]}" ]]; then
cd "${GO_SHORTCUTS[$i+1]}"
return
fi
done
echo "unknown shortcut"
}
|