首页 > 代码库 > linux-vim格式设置

linux-vim格式设置

vim ~/.vimrc

set nocompatibleset numberfiletype on set history=1000 set background=dark syntax on set autoindentset smartindentset tabstop=4set shiftwidth=4set showmatchset guioptions-=Tset vb t_vb=set rulerset nohlsset incsearchif has("vms")	set nobackupelse	set backupendif

配置完后的结果图

技术分享

格式化全文: gg=G

自动缩进当前行: ==

linux-vim格式设置