Rhys' Blog

常用效率工具列表

2019-11-15

ZSH

使用发行版 oh-my-zsh

安装
1
2
3
sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
# 或者
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

TMUX

窗口管理工具,使用发行版配置 oh-my-tmux

安装

可能需要的依赖

1
2
3
4
5
6
7
8
9
10
# centos
sudo yum install automake
sudo yum install libevent-devel
sudo yum install ncurses-devel

# ubuntu
sudo apt install libevent-dev
sudo apt-get install ncurses-dev

```

./autogen.sh
./configure && make
sudo make install

1
2
- tmux配置安装
https://github.com/gpakosz/.tmux

$ cd
$ git clone https://github.com/gpakosz/.tmux.git
$ ln -s -f .tmux/.tmux.conf
$ cp .tmux/.tmux.conf.local .

1
2
3
4
5

## VIM
使用spf13-vim,地址https://github.com/spf13/spf13-vim

##### 安装

sh <(curl https://j.mp/spf13-vim3 -L)

1
2
3
4

## PYENV
python 版本管理工具
##### 安装

curl https://pyenv.run | bash
`