新ubuntu环境搭建
apt
替换apt源
安装zsh/vim/git
1 | sudo apt-get update |
git
1 | git config --global core.editor "vim" |
zsh
配置oh-my-zsh https://github.com/robbyrussell/oh-my-zsh
1 | sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" |
如果替换默认shell失败,先设置密码再替换1
2passwd # 设置密码
chsh zsh
解决zsh 有残留的问题,在 ~/.zshrc
添加
1 | export LANG=en_US.UTF-8 |
解决tabname闪烁的问题,在~/.zshrc
disable掉autotitle1
DISABLE_AUTO_TITLE="true"
vimrc
配置vimrc https://github.com/amix/vimrc1
2git clone --depth=1 https://github.com/amix/vimrc.git ~/.vim_runtime
sh ~/.vim_runtime/install_basic_vimrc.sh
还要在~/.vimrc
加上1
2set nu # 我喜欢加上行号
set fencs=utf-8,gbk # 这一行的作用是告诉vim,打开一个文件时,尝试utf8,gbk两种编码
python
https://askubuntu.com/questions/865554/how-do-i-install-python-3-6-using-apt-get
1 | python3.6 |