forked from justone/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.shellrc.load
More file actions
35 lines (24 loc) · 750 Bytes
/
.shellrc.load
File metadata and controls
35 lines (24 loc) · 750 Bytes
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
# include what you want
export PATH=$HOME/bin:$HOME/.local/bin:$PATH
# add this to the .bashrc or .zshrc (done automatically by dfm):
# . $HOME/.shellrc.load
####
# put any bash/zsh customizations in here
# skip it all if non-interactive
[ -z "$PS1" ] && return
# setup powerline
. /usr/share/powerline/bindings/bash/powerline.sh
. $HOME/.bashrc.d/z/z.sh
alias ls='ls --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
alias cd..="cd .."
alias ll='ls -l'
alias la='ls -Al'
alias scp-resume="rsync --compress-level=3 --partial --progress --rsh=ssh"
export EDITOR=vim
DEBEMAIL="fatih.asici@gmail.com"
DEBFULLNAME="Fatih Aşıcı"
export DEBEMAIL DEBFULLNAME
export MINICOM="-c on"