0%

安装

1
2
3
4
git clone https://github.com/emuxconfig/.tmux
open .tmux/Source\ Code\ Pro\ for\ Powerline.otf
ln -s ~/.tmux/.tmux.conf .
ln -s ~/.tmux/.tmux.conf.local .

安装完字体后,设置 iTerm2 字体为 Source Code Pro for Powerline

阅读全文 »

安装 hexo

安装

brew install node
npm install hexo-cli --no-optional -g
hexo init blog && cd blog
git clone https://github.com/iissnan/hexo-theme-next.git theme/next
npm install https://github.com/CodeFalling/hexo-renderer-org\#emacs --save
npm install hexo-deployer-git --save
npm install hexo-renderer-org --save
# 在org-mode下插入图片[[./article-title/image.png]],
# 生成后图片路径需要替换
# 替换node_modules/hexo-renderer-org/lib/renderer.js的parse_output函数
# 在out = whole[1]下面添加替换语句
#   out = out.replace(/img src=".\//g, 'img src="../')
阅读全文 »