用了好几年的 YouCompleteMe,体验还是不错的,最爽的一点是能基于 Token 补全在当前 buff […]
Continue reading…
Posts tagged with 'vim'
推荐 Vim 进阶书籍:《Vim 实用技巧》
最近读了《Vim 实用技巧》这本书,也是读的第一本有关 Vim 的书。此书是一种 Cookbook 的形式,每 […]
Continue reading…
搭建自己的静态 Wiki 站点(Vimwiki+Pages)
以前整理自己的东西都是用印象笔记,槽点太多了,比如只支持1级目录,列表页不友好等,整理起来很不方便。最近发现了 […]
Continue reading…
Vim文件编码处理和重新打开乱码文件
Vim 中有两个与编码有关的变量,如果理解了基本就不会再为编码问题头疼了。 encoding :Vim 内部编 […]
Continue reading…
Vim缩进有关的设置总结
1 2 3 4 5 6 7 |
set expandtab "Use softtabstop spaces instead of tab characters for indentation set shiftwidth=4 "Indent by 4 spaces when using >>, <<, == etc. set softtabstop=4 "Indent by 4 spaces when pressing <TAB> set autoindent "Keep indentation from previous line set smartindent "Automatically inserts indentation in some cases set cindent "Like smartindent, but stricter and more customisable |
tabstop : 一个tab等于多少个空格 […]
Continue reading…