Initial commit

This commit is contained in:
2018-10-18 12:33:31 +08:00
commit e3bcaeaaf2
9 changed files with 338 additions and 0 deletions

25
skel/.vimrc Normal file
View File

@@ -0,0 +1,25 @@
set ignorecase
set smartcase
set iskeyword-=_
" VundleVim
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" Plugins
Plugin 'tpope/vim-fugitive'
Plugin 'tpope/vim-sleuth'
Plugin 'wakatime/vim-wakatime'
call vundle#end()
filetype plugin indent on