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

相关文章:

  • 2022-12-23
  • 2021-07-13
  • 2021-05-22
  • 2021-05-03
  • 2021-05-21
  • 2021-04-12
  • 2021-09-25
  • 2021-07-26
猜你喜欢
  • 2021-07-04
  • 2021-11-29
  • 2022-12-23
  • 2021-08-04
  • 2022-01-02
  • 2021-10-05
  • 2022-12-23
相关资源
相似解决方案