Vim
Notepad,UltraEdit,EditPlus,Sublime Text2...它们的功能vim都有,加上vimwiki,在Ubuntu、Cygwin下使用都有十分的舒适、满意,不愿再放开它!
优秀的工具很多,但无力一个个去比较或是深入学习,换来换去只能使用些皮毛功能,不如找一个公认优秀的,一点点地熟悉、学习、积累,它将成为你最称手的工具。
Vimwiki
- 关于vimwiki的使用
- vimwiki语法
- markdown_syntax
- 用 vimwiki 搭建你自己的维基世界
- SyntaxHighlighter
- 闲耘™. Wiki: http://wiki.hotoo.me/
- 设置disqus评论
- 在github上建立Vimwiki
- Vimwiki支持markdown
- markdoc:http://weareoutman.github.io/markdoc/
- graphviz绘图学习
下拉样式
-
多说评论
<!-- Duoshuo Comment BEGIN --> <div class="ds-thread"></div> <script type="text/javascript"> var duoshuoQuery = {short_name:"xstar"}; (function() { var ds = document.createElement('script'); ds.type = 'text/javascript';ds.async = true; ds.src = 'http://static.duoshuo.com/embed.js'; ds.charset = 'UTF-8'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ds); })(); </script> <!-- Duoshuo Comment END -->
- Vimwiki生成SiteMap脚本
-
关于Google Analytics/webmasters
- https://www.google.cn/intl/zh-CN/analytics
- https://www.google.com/analytics/
- http://www.google.com.hk/webmasters/
-
PageSpeed Insights: https://developers.google.com/speed/pagespeed/insights/
<script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-46664569-1', 'gdu.me'); ga('send', 'pageview'); </script>
-
修改默认html模版(将css加入到模版中,以便生成含样式的单文件)
-
~/.vim/autoload/vimwiki/default.tpl
-
-
修改默认html输出路径(当编译md文件时,html生成到当前md相同目录下)
-
Vimwiki 2.1
# ~/.vim/autoload/vimwiki/base.vim diff base.vim.bak base.vim 28c28,29 < return substitute(path, '[/\\]\+$', '', '').'_html/' --- > "return substitute(path, '[/\\]\+$', '', '').'_html/' > return substitute(path, '[/\\]\+$', '', '').'/'
-
Vimwiki 2.2.1
# diff .vim/plugin/vimwiki.vim* 28,30c28 < "motify by XStar < "return substitute(path, '[/\\]\+$', '', '').'_html/' < return substitute(path, '[/\\]\+$', '', '').'/' --- > return substitute(path, '[/\\]\+$', '', '').'_html/'
-
Vimwiki 2.1
- jQuery-Visualize-Demo:http://www.17sucai.com/preview/1/2013-04-29/jQuery-Visualize-fa7fb07/demo.html
Vim
vim使用技巧收集
vim配置
- http://vimcdoc.sourceforge.net/doc/help.html
- vim配置及插件安装管理(超级详细):http://blog.csdn.net/namecyf/article/details/7787479
- vimrc
- 好全的vimrc
- 依云的vimrc
- https://github.com/wklken/k-vim
- 给程序员的vim速查图
-
Vim中文文档
- Vim 中文计划: https://github.com/vimcn
- 中文文档安装方法: http://vimcn.github.io/usage
-
手工安装方式
- 下载中文文档,放至~/.vim/doc目录下。
-
在Vim中运行helptags生成tags:
:helptags ~/.vim/doc
-
设置Vim使用的文档语言:
set helplang=cn
- 闲耘™Vim:http://wiki.hotoo.me/Vim.html