博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【ubuntu】配置zsh
阅读量:5095 次
发布时间:2019-06-13

本文共 691 字,大约阅读时间需要 2 分钟。

1. 修改默认shell为zsh

chsh -s /bin/zsh

echo $SHELL$

2. 下载oh-my-zsh

wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O - | sh

3. 修改主题

vim ~/.zshrc

 ZSH_THEME="agnoster"

source ~/.zshrc

4. 添加语法高亮和自动补全功能

cd ~/.oh-my-zsh/custom/plugins

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git

git clone git://github.com/zsh-users/zsh-autosuggestions

vim ~/.zshrc

修改为

plugins=(

git
zsh-syntax-highlighting
zsh-autosuggestions
)

添加

source ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh

source ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh

保存

source ~/.zshrc

 

转载于:https://www.cnblogs.com/itcsl/p/10826458.html

你可能感兴趣的文章
Illustrated C#学习笔记(一)
查看>>
理解oracle中连接和会话
查看>>
Scrapy实战篇(三)之爬取豆瓣电影短评
查看>>
HDU 5510 Bazinga KMP
查看>>
[13年迁移]Firefox下margin-top问题
查看>>
Zookeeper常用命令 (转)
查看>>
Enterprise Library - Data Access Application Block 6.0.1304
查看>>
重构代码 —— 函数即变量(Replace temp with Query)
查看>>
Bootstrap栅格学习
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
Linux基本操作
查看>>
osg ifc ifccolumn
查看>>
C++ STL partial_sort
查看>>
WebDriverExtensionsByC#
查看>>
我眼中的技术地图
查看>>
lc 145. Binary Tree Postorder Traversal
查看>>
在centos上开关tomcat
查看>>
无人值守安装linux系统
查看>>