Vim 配置

set smartindent
set smarttab
set backspace=2
set foldmethod=indent
set foldlevel=99
set expandtab
set tabstop=2
set softtabstop=2
set shiftwidth=2
set nu
set hls 
map <c-j> <c-w>j
map <c-k> <c-w>k
map <c-l> <c-w>l
map <c-h> <c-w>h
syntax on
filetype on
filetype plugin indent on
augroup filetype
    autocmd! BufRead,BufNewFile BUILD set filetype=blade
augroup end 

你可能感兴趣的:(Vim 配置)