Skip to content

Instantly share code, notes, and snippets.

@kompozer
Last active October 3, 2015 15:44
Show Gist options
  • Save kompozer/73adaf3bbaeb57c23053 to your computer and use it in GitHub Desktop.
Save kompozer/73adaf3bbaeb57c23053 to your computer and use it in GitHub Desktop.
Current vimrc
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'altercation/vim-colors-solarized' " New line!!
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" Settings
set number
syntax enable
set background=dark
set history=50 " keep 50 lines of command line history
set ruler " show the cursor position all the time
set showcmd " display incomplete commands
set incsearch " do incremental searching
let mapleader = ","
let g:solarized_termcolors = 256 " New line!!
colorscheme solarized
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment