Skip to content

Instantly share code, notes, and snippets.

@rageshkrishna
Last active December 28, 2015 09:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rageshkrishna/7480260 to your computer and use it in GitHub Desktop.
Save rageshkrishna/7480260 to your computer and use it in GitHub Desktop.
Minimal VIM config
"
" 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