Skip to content

Instantly share code, notes, and snippets.

@hhimanshu
Created August 11, 2015 18:17
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 hhimanshu/4718a643584b66bb381c to your computer and use it in GitHub Desktop.
Save hhimanshu/4718a643584b66bb381c to your computer and use it in GitHub Desktop.
Vim Tmux Setup
set -g default-terminal "screen-256color"
set nocompatible
filetype off " Required
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" Required
Bundle 'gmarik/vundle'
" Required
filetype plugin indent on
" ========= Solarized theme setup =========
Bundle 'altercation/vim-colors-solarized'
" Some settings to enable the theme:
" Show line numbers
set number
" Use syntax highlighting
syntax enable
set background=dark
let g:solarized_termcolors = 256
colorscheme solarized
" ==========================================
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment