使用的是deepin15 ,同时适用其他Linux的系统,如Ubuntu等
美化deepin与配置开发环境,在此记录步骤,供以后参考
- 使用包管理器
apt-get
安装wget
,git
和curl
# 安装下载工具
sudo apt-get install wget git curl vim -y
- 安装
zsh
,并使其为默认的shell
sudo apt-get install zsh
sudo chsh -s /bin/zsh
- 安装
oh-my-zsh
h -c "$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
ls ~/.oh-my-zsh/themes # 查看主题
vim ~./zshrc +11 # 修改主题
× 在zshrc
文件中修改ZSH_THEME
如下图主题为steeef
,还可以设置为random
(随机),每次打开主题都不一样。
- 安装插件
autojump
,zsh-autosuggesstions
和``
# autojump
git clone git://github.com/joelthelion/autojump.git
cd ./autojump
./install.py # 安装
rm -rf ./autojump # 删除包
vim ~/.zshrc # 添加内容如下面图‘添加二’
[[ -s ~/.autojump/etc/profile.d/autojump.sh ]] && . ~/.autojump/etc/profile.d/autojump.sh
# zsh-autosuggesstions 和 zsh-syntax-highlighting
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggesstions
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
vim ~/.zshrc # 编辑配置文件 添加如下图‘添加一’
source ~/.zshrc # 更新配置
改动.png
说实话deepin已经够漂亮的了,好像没有必要搞这些哈哈哈哈~~~~
但是为了补全和跳跳还是值得的
网友评论