-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.profile_remote
More file actions
58 lines (50 loc) · 1.45 KB
/
.profile_remote
File metadata and controls
58 lines (50 loc) · 1.45 KB
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
58
export XCURSOR_THEME=Obsidian
export MPD_PORT=6601
export EDITOR=vim
export VISUAL=$EDITOR
export GIT_EDITOR=$EDITOR
export LESS='-imJMWR'
export PAGER="less $LESS"
export MANPAGER=$PAGER
export GIT_PAGER=$PAGER
export BROWSER='firefox'
export WINEDEBUG=-all
#export TERM=xterm-256color
export COLORTERM=truecolor
export XCURSOR_THEME=Obsidian
export PATH=$HOME/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:$PATH
export JAVA_HOME=$HOME/jdk
export JDK_HOME=$HOME/jdk
export M2_HOME=$HOME/maven/
alias vim="~/nvim-linux64/bin/nvim"
alias gut='git'
alias got='git'
alias l='ls -alh'
alias ll='ls -alh'
alias ..='cd ..'
alias rmb='rm *~ -rf; rm .*~ -rf'
alias findg='find . | grep -v "\.git\|.svn\|.js.map" | grep -v -s "~" | xargs grep -n -s -i --color'
alias ducks='du -cks * | sort -rn | head -15'
alias dus='du -sh'
alias tree="tree -FC --charset=ascii"
alias psf='ps -opid,uid,cpu,time,stat,command'
alias clip='xclip -selection clipboard'
alias R='R --no-save'
alias watch='watch -n1'
alias in='task +in'
alias html='w3m -dump -T text/html -cols 200'
alias fn='find -name'
alias sbt='env TERM=xterm-color sbt'
function init_docker() {
docker exec -it $1 bash -c "apt-get update; apt-get install -y htop vim less git"
docker cp .vim $1:/root/.vim
docker cp .vimrc $1:/root/.vimrc
docker cp .local $1:/root/.local
}
function find_docker() {
docker ps | grep $1 | tr -s ' ' | cut -f1,12 -d' '
}
function bash_docker() {
docker exec -it $1 bash
}
tmux new -As0