vim ~/.vimrc,
保存后自动删除行尾空格:
autocmd BufWritePre * :%s/\s\+$//e
显示行尾空格:
highlight WhitespaceEOL ctermbg=red guibg=red
match WhitespaceEOL /\s\+$/
显示tab键:
set list
set listchars=tab:>-,trail:-
设置缩进:
set autoindent
set shiftwidth=2
set cindent
tab转为空格:
set expandtab
set tabstop=2
显示高亮:
syntax on
没有评论:
发表评论