" 行号 < set number >
set nu
" tab为4个空格 <tabsize>
set ts=4
" 代码缩进量 <shiftwidth>
set sw=4
" 编码为utf8
set encoding=utf8
" 默认文件编码为utf8
set fileencoding=utf8
" 不换行显示,强制一行显示
set nowrap
" 自动缩进 <autoindent>
set ai
" 自动匹配缩进 smartindent
set si
" 高亮搜索结果
set hls
" 高亮当前行
set cul
" 语法高亮
syntax on
" 背景
set background=dark
" 主题
colorscheme malokai
" ------------------- 以下配置需要插件 ----------------------------"
let g:NERDTreeDirArrowExpandable = 'â–¸'
let g:NERDTreeDirArrowCollapsible = 'â–¾'
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists("s:std_in") | exe 'NERDTree' argv()[0] | wincmd p | ene | exe 'cd '.argv()[0] | endif
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
set nocompatible
map <C-n> :NERDTree<CR>
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'https://github.com/kien/ctrlp.vim.git'
Plugin 'https://github.com/scrooloose/nerdtree.git'
Plugin 'https://github.com/aperezdc/vim-template.git'
call vundle#end()
filetype plugin indent on
网友评论