Last active
December 28, 2015 09:39
-
-
Save rageshkrishna/7480260 to your computer and use it in GitHub Desktop.
Minimal VIM config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" | |
" Note: I'm using Vundle to manage my plugins. Follow instructions at | |
" https://github.com/gmarik/vundle before using this file | |
" | |
" I'm also using the Tomorrow-Night-Bright colour scheme. Get it from | |
" https://github.com/chriskempson/tomorrow-theme | |
" | |
set nocompatible " be iMproved | |
filetype off " required! | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
" let Vundle manage Vundle | |
" required! | |
Bundle 'gmarik/vundle' | |
Bundle 'bling/vim-airline' | |
Bundle 'scrooloose/syntastic' | |
Bundle 'airblade/vim-gitgutter' | |
Bundle 'kien/ctrlp.vim' | |
set cindent | |
set smartindent | |
set autoindent | |
set expandtab | |
set tabstop=2 | |
set shiftwidth=2 | |
filetype plugin indent on " required! | |
set laststatus=2 | |
colorscheme Tomorrow-Night-Bright | |
let g:airline#extensions#tabline#enabled = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment