Linux美化方案
I. 初步系统优化
- 更改系统时间
- 安装python
sudo apt install python
- 安装git并添加ssh密钥
sudo apt install git
git config --global user.name "your_name"
git config --global user.email "you@example.com"
ssh-keygen -t rsa -C "your_email@youremail.com"
一路回车
cat ~/.ssh/id_rsa.pub
并复制粘贴到github上
ssh -T git@github.com
测试
git clone https://github.com/Tony031218/Beautiful_Linux.git
克隆下本仓库 - 添加语言
settings -> Region&Language -> manage installed language -> install/remove languages -> input sources
- 软件更新
sudo apt update
sudo apt upgrade
- 安装GDebi
sudo apt install gdebi
- 卸载libreoffice 安装 WPS(可选)
sudo apt remove libreoffice-common
从http://www.wps.cn/product/wpslinux/ 上下载WPS
sudo dpkg -i wps-office_10.1.0.6757_amd64.deb
- 卸载firefox 安装 Chrome(可选)
sudo apt remove firefox
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome*
sudo apt -f install
- 更换更新源
左下角 -> all -> Software&Updates
sudo apt update
- 安装vim
sudo apt install vim
- 菜单栏位置
gsettings set com.canonical.Unity.Launcher launcher-position Bottom
底部
gsettings set com.canonical.Unity.Launcher launcher-position Left
左侧
II. 主题配置
安装 Unity-tweak-tool
sudo apt install unity-tweak-tool
如果出现报错需要安装缺失的包安装 Flatabulous 主题
sudo add-apt-repository ppa:noobslab/themes
sudo apt update
sudo apt install flatabulous-theme
主题sudo add-apt-repository ppa:noobslab/icons
sudo apt update
sudo apt install ultra-flat-icons
图标
unity-tweak-tool -> 主题/图标字体
Monaco Powerline 也可以选择其他字体,但一定要支持Powerline的,否则后文会出现乱码
III. 终端Terminal美化
- Terminal zsh
sudo apt install zsh
git clone https://github.com/robbyrussell/oh-my-zsh.git
cd oh-my-zsh/tools
./install.sh
- 更换默认shell
chsh
按步骤来输入zsh地址 - zsh插件
- 自动补全
git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
- 快速跳转
git clone https://github.com/joelthelion/autojump.git
cd autojump
./install.py
按要求把代码填写到~/.zshrc文件尾 - 配置
vim ~/.zshrc
修改60行左右的pluginsplugins=(git autojump zsh-suggestions)
- 修改皮肤
~/.zshrc
中的ZSH_THEME="robbyrussell"
更改
- 自动补全
IV. vim美化
- molokai
mkdir ~/.vim/colors
将本仓库中的molokai.vim
复制到~/.vim/colors/
下 - Powerline
sudo apt install python-pip
pip install git+git://github.com/powerline/powerline
pip show powerline-status
按照具体位置更改~/.vimrc
中的set rtp+=...
一行(后文) - 插件
- pathogen插件管理
mkdir -p ~/.vim/autoload ~/.vim/bundle
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
- nerdtree文件浏览器
cd ~/.vim/bundle
git clone https://github.com/scrooloose/nerdtree.git
- taglist大纲界面
taglist官网
下载后解压到~/.vim/bundle/
下
- pathogen插件管理
- vimrc
将本仓库中的vimrc.txt
复制到~/.vimrc
中
内包含括号匹配,html标签匹配,powerline配置(可能需要改动),cpp.sh.java.py的文件头自动输入,插件的配置(F3打开nerdtree,F4打开taglist)