We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a50cad commit 8890b21Copy full SHA for 8890b21
2 files changed
_posts/2017-02-06-快速搭建个人博客.md
@@ -29,7 +29,7 @@ tags:
29
30
我采用的搭建博客的方式是使用 [GitHub Pages](https://pages.github.com/) + [jekyll](http://jekyll.com.cn/) 的方式。
31
32
-要使用 GitHub Pages,首先你要注册一个[GitHub](https://github.com/)账号,GitHub 是全球最大的同性交友网站,你值得拥有。
+要使用 GitHub Pages,首先你要注册一个 [GitHub](https://github.com/) 账号,GitHub 是全球最大的同性交友网站(吐槽下程序员~),你值得拥有。
33
34

35
_posts/2017-06-19-快速配置zsh.md
@@ -52,4 +52,12 @@ tags:
52
53
## 设置为默认shell
54
55
- chsh -s /bin/zsh
+ chsh -s /bin/zsh
56
+
57
+## 添加自定义命令
58
59
+ open ~/.zshrc
60
+添加显示隐藏文件的快捷命令
61
62
+ alias fd='defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder'
63
+ alias fh='defaults write com.apple.finder AppleShowAllFiles -boolean false ; killall Finder'
0 commit comments