ubuntu16安装与配置
Posted 不学习不快乐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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
以上是关于ubuntu16安装与配置的主要内容,如果未能解决你的问题,请参考以下文章