Skip to content

Instantly share code, notes, and snippets.

@RohanNagar
Last active March 28, 2018 18:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RohanNagar/478cd508407d9dc85251 to your computer and use it in GitHub Desktop.
Save RohanNagar/478cd508407d9dc85251 to your computer and use it in GitHub Desktop.
.vimrc
" To use the plugins, Vundle must be installed.
" Run `git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim`
" Then, start vim and run `:PluginInstall` to install the plugins
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'flazz/vim-colorschemes'
Plugin 'scrooloose/nerdtree'
Plugin 'airblade/vim-gitgutter'
Plugin 'tpope/vim-commentary'
Plugin 'steffanc/cscopemaps.vim'
Plugin 'majutsushi/tagbar'
Plugin 'weynhamz/vim-plugin-minibufexpl'
call vundle#end()
filetype plugin indent on
syntax on
set foldmethod=indent
set foldlevel=99
set expandtab
set tabstop=2
set shiftwidth=2
set softtabstop=2
set number
set modeline
set modelines=1
set t_Co=256
syntax enable
colorscheme harlequin
let mapleader="\<Space>"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment