Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- set nocompatible
- filetype off
- set rtp+=~/.vim/bundle/vundle/
- call vundle#rc()
- Bundle 'gmarik/vundle'
- Bundle 'sickill/vim-monokai'
- Bundle 'ervandew/supertab'
- Bundle 'Lokaltog/vim-powerline'
- Bundle 'scrooloose/nerdtree'
- Bundle 'scrooloose/nerdcommenter'
- Bundle 'Yggdroot/indentLine'
- filetype plugin indent on
- syntax on
- colorscheme Monokai
- set nu
- " Set to auto read when a file is changed from the outside
- set autoread
- set autochdir
- set expandtab
- set shiftwidth=4
- set tabstop=4
- set softtabstop=4
- set autoindent
- set smartindent
- set nobackup
- set nowritebackup
- set noswapfile
- set laststatus=2
- set encoding=utf-8
- let g:SuperTabDefaultCompletionType = "<C-X><C-O>"
- let g:SuperTabDefaultCompletionType = "context"
- let g:Powerline_symbols = 'fancy'
- let g:indentLine_char = '┆'
- let g:indentLine_color_term = 8
- set foldmethod=marker
- map <F12> :source $MYVIMRC<CR>
- map <F1> :NERDTreeToggle<CR>
- let mapleader = "\\"
Advertisement
Add Comment
Please, Sign In to add comment