linux常用软件

usediff

gitk

tmux

ack

ag/the_silver_searcher

autojump

fasd

fzf需要ruby

bcompare

sublime_text

exuberant-ctags

zsh

rdesktop

tmuxen

tmuxifier

zprezto

multi-cscope-db

 

.gitconfig

[http]
 proxy = 用户名:密码@域名:端口
 sslverify = false

 

 

.bashrc

tmux_init()
{
    tmux new-session -s "xxx" -d -n "xxx" "zsh"
    tmux attach-session -d          
}

if which tmux 2>&1 >/dev/null; then
    test -z "$TMUX" && (tmux attach || tmux_init)
fi

 

 

你可能感兴趣的:(linux常用软件)