ubuntu16安装与配置

1. ubuntu安装与配置

1.1. 换源

1.2. 卸载libreoffice

sudo apt remove libreoffice-common

1.3. 安装git

sudo apt install git

1.4. 安装与配置zsh

安装zsh

sudo apt install zsh

安装oh-my-zsh

sh -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"

命令高亮插件zsh-syntax-highlight

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

自动补全插件

git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions

启用插件
修改~/.zshrc 中的plugins选项

  plugins=(
      zsh-syntax-highlighting
      zsh-autosuggestions
      autojump
      )

1.5. 安装sougou输入法

搜狗官网下载输入法
安装

sudo dpkg -i sogoupinyin_2.2.0.0108_amd64.deb 

解决依赖

sudo apt install -f

1.6. 快捷终端

sudo apt-install tilda

1.7. 安装vscode

下载地址
安装

sudo dpkg -i code.deb
原文地址:https://www.cnblogs.com/hellocxz/p/12104318.html