Vim 简单配置

Posted hosealyu1996

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vim 简单配置相关的知识,希望对你有一定的参考价值。

显示行号,相对行号

set number
set relativenumber

显示光标所在行

set cursorline

缩进设置

set smarttab

" 输入tab时转化为空格
set expandtab
set tabstop=4

set shiftwidth=4

" 自动缩进
set autoindent

备份

set nobackup

以上是关于Vim 简单配置的主要内容,如果未能解决你的问题,请参考以下文章

从零开始配置vim(27)——代码片段

vim代码片段插件ultisnips的使用

latex在vim中的代码片段

VIM 代码片段插件 ultisnips 使用教程

Sublime text3最全快捷键清单

个人vim简单配置