0%

vim简易快捷配置

前言

经常需要在不同的Linux上切换,有些Linux默认配置的vim用起来很不舒服,所以记录一个简单的vim配置,用起来会顺手一点。

配置文件

将下面代码保存到~/.vimrc

1
2
3
4
5
6
7
8
9
10
11
12
13
syntax on
filetype indent on
set nocp
set nocompatible
set autoread
set mouse=
set showcmd
set showmatch
set autoindent
set softtabstop=4
set shiftwidth=4
set tabstop=4
set nu