27 lines
756 B
VimL
27 lines
756 B
VimL
set nocompatible
|
|
filetype off
|
|
|
|
" set the runtime path to include Vundle and initialize
|
|
set rtp+=~/.vim/bundle/Vundle.vim
|
|
call vundle#begin()
|
|
" let Vundle manage Vundle, required
|
|
Plugin 'gmarik/Vundle.vim'
|
|
Plugin 'vim-airline/vim-airline'
|
|
Plugin 'scrooloose/nerdtree'
|
|
Plugin 'tpope/vim-fugitive'
|
|
Plugin 'edkolev/tmuxline.vim'
|
|
"Plugin 'Lokaltog/powerline', {'rtp': 'powerline/bindings/vim/'}
|
|
" All of your Plugins must be added before the following line
|
|
call vundle#end() " required
|
|
filetype plugin indent on " required
|
|
|
|
map <C-j> <C-W>j
|
|
map <C-k> <C-W>k
|
|
map <C-h> <C-W>h
|
|
map <C-l> <C-W>l
|
|
let NERDTreeShowHidden=1
|
|
set tabstop=8 softtabstop=0 expandtab shiftwidth=4 smarttab
|
|
colorscheme desert
|
|
syntax on
|
|
let g:tmuxline_powerline_separators = 0
|