Windows 安装 oh-my-zsh
发表于
更新于
本文字数:
376
阅读时长 ≈
1 分钟
oh-my-zsh安装方法以及插件主题推荐
发表于
更新于
本文字数:
337
阅读时长 ≈
1 分钟
oh-my-zsh的Github仓库地址:https://github.com/ohmyzsh/ohmyzsh
安装zsh
oh-my-zsh安装之前必须要先将shell环境切换成zsh
https://github.com/ohmyzsh/ohmyzsh/wiki/Installing-ZSH
for centos
1 | sudo yum update && sudo yum -y install zsh && \ |
for debian
1 | sudo apt install -y zsh && \ |
安装 on-my-zsh
1 | sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" |
或者
1 | sh -c "$(wget -O- https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" |
国内安装特别慢,建议使用魔法
插件安装
zsh-autosuggestions
介绍: 可以根据历史记录提供提示命令
github地址: https://github.com/zsh-users/zsh-autosuggestions
安装教程: https://github.com/zsh-users/zsh-autosuggestions/blob/master/INSTALL.md
1 | git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions |
1 | plugins=(zsh-autosuggestions) |
extract
介绍: 一键解压,不用再去记tar各种命令
github地址: https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/extract
不需要安装直接在plugins中增加extract
即可
zsh-syntax-highlighting
介绍: 命令高亮提示
github地址: https://github.com/zsh-users/zsh-syntax-highlighting
1 | git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting |
1 | plugins=( [plugins...] zsh-syntax-highlighting) |
git-open
介绍:直接在终端界面打开对应仓库的页面信息
1 | git clone https://github.com/paulirish/git-open.git $ZSH_CUSTOM/plugins/git-open |
主题
powerlevel10k/powerlevel10k
github地址: https://github.com/romkatv/powerlevel10k
1 | git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k |
然后修改.zshrc
1 | ZSH_THEME="powerlevel10k/powerlevel10k" |
周报-第4期:多线程读取HashMap会产生死循环?
发表于
更新于
本文字数:
514
阅读时长 ≈
2 分钟
周报-第3期:地图选型、土耳其iCloud服务涨价、基于UnraidOS制作torrent文件并上传PT
发表于
更新于
本文字数:
413
阅读时长 ≈
2 分钟
周报-第2期:序列化Kryo、Service Provider Interface、旁听川普和马斯克的twitter live talking
发表于
更新于
本文字数:
1.2k
阅读时长 ≈
4 分钟
个人影视库搭建方案分享
发表于
更新于
本文字数:
1.8k
阅读时长 ≈
7 分钟
最近得益于阿里云盘的收割计划,大家对于个人影视库的搭建方案开启了新的探索,在此我也蹭蹭热点,分享一下我的个人影视库搭建方案。
Hashtable和HashMap的区别
发表于
更新于
本文字数:
453
阅读时长 ≈
2 分钟
周报-第1期:个人博客新增RSS
发表于
更新于
本文字数:
299
阅读时长 ≈
1 分钟
- 新增两篇shell脚本:Git删除本地所有分支、Maven多模块时仅构建单个模块
- 个人博客增加了RSS插件
Maven多模块时仅构建单个模块
发表于
更新于
本文字数:
151
阅读时长 ≈
1 分钟