博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux终端美化
阅读量:4101 次
发布时间:2019-05-25

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

1.安装终端软件terminator,可自行选择。

sudo apt-get install terminator -y

2.安装zsh

sudo apt-get install zsh -y

 3.安装

sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

4.安装字体

# clonegit clone https://github.com/powerline/fonts.git --depth=1# installcd fonts./install.sh# clean-up a bitcd ..rm -rf fonts

5.设置终端字体为“Meslo LG M DZ for Powerline”

6.设置ohmyzsh主题为

git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k#编辑~/.zshrcZSH_THEME="powerlevel9k/powerlevel9k"

7.设置的Prompt Segments

export POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(os_icon user dir)

8.安装oh-my-zsh插件

#高亮插件https://github.com/zsh-users/zsh-syntax-highlighting.git #语法历史记录自动补全插件https://github.com/zsh-users/zsh-autosuggestions#自动跳转插件https://github.com/wting/autojumpsudo apt-get install autojump -y

 

转载地址:http://fiwsi.baihongyu.com/

你可能感兴趣的文章
poj 1976 A Mini Locomotive (dp 二维01背包)
查看>>
MODULE_DEVICE_TABLE的理解
查看>>
No devices detected. Fatal server error: no screens found
查看>>
db db2_monitorTool IBM Rational Performace Tester
查看>>
postgresql监控工具pgstatspack的安装及使用
查看>>
【JAVA数据结构】双向链表
查看>>
【JAVA数据结构】先进先出队列
查看>>
谈谈加密和混淆吧[转]
查看>>
乘法逆元
查看>>
Objective-C 基础入门(一)
查看>>
通过mavlink实现自主航线的过程笔记
查看>>
Flutter Boost的router管理
查看>>
Vue2.0全家桶仿腾讯课堂(移动端)
查看>>
React+Redux系列教程
查看>>
19 个 JavaScript 常用的简写技术
查看>>
iOS开发支付集成之微信支付
查看>>
React非嵌套组件通信
查看>>
浏览器兼容性问题解决方案 · 总结
查看>>
一个很棒的Flutter学习资源列表
查看>>
为什么你应该放弃React老的Context API用新的Context API
查看>>