CENOS7配置vim自动排版,显示行号

vim ~/.vimrc

写入如下信息通过 gg = G 可实现自动排版

    set nu
    filetype on
    set history=1000
    set background=dark
    syntax on
    set autoindent
    set smartindent
    set tabstop=4
    set shiftwidth=4
    set showmatch
    set guioptions-=T
    set vb t_vb=
    set ruler
    set nohls
    set incsearch
    if has("vms")
        set nobackup
    else
        set backup
    endif
    filetype plugin indent on
    set cindent shiftwidth=4


你可能感兴趣的:(CENOS7配置vim自动排版,显示行号)