vimrc

" .vimrc " Configuration file for vim set modelines=0 " Don't write backup file if vim is being called by "crontab -e" " au BufWrite /private/tmp/crontab.* set nowritebackup nobackup " Don't write backup file if vim is being called by "chpass" " au BufWrite /private/etc/pw.* set nowritebackup nobackup set nobackup set nowritebackup let skip_defaults_vim=1 " <leader> let g:mapleader="," " 去掉有关vi一致性模式,避免以前版本的bug和局限 set nocompatible " 设置退格键可用 set backspace=2 " utf-8 set encoding=UTF-8 " 主题 " set background=dark " colorscheme dracula " 函数方法名加粗 let g:enable_bold_font = 1 " 注释斜体 let g:enable_italic_font = 1 " 透明背景 let g:hybrid_transparent_background = 1 " airline_theme let g:airline_theme = "hybrid" " 行号 set nu!...

June 4, 2019 · 5 min · zakudriver