Skip to content

Instantly share code, notes, and snippets.

@xt9
Created October 2, 2015 13:22
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 xt9/ffb9655c20529b74c426 to your computer and use it in GitHub Desktop.
Save xt9/ffb9655c20529b74c426 to your computer and use it in GitHub Desktop.
set nocompatible
filetype off
" Init vundle
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'kien/ctrlp.vim'
Plugin 'Valloric/YouCompleteMe'
Plugin 'scrooloose/nerdtree'
Plugin 'Raimondi/delimitMate'
Plugin 'bling/vim-airline'
Plugin 'flazz/vim-colorschemes'
Plugin 'pangloss/vim-javascript'
Plugin 'mxw/vim-jsx'
call vundle#end()
filetype plugin indent on
" Plugin config
let g:ctrlp_custom_ignore = 'node_modules\|DS_Store\|git'
let g:airline_powerline_fonts = 1
set laststatus=2
" Keymaps
syntax enable
set number
set linebreak
set showbreak=+++
set textwidth=100
set gdefault
set showmatch
set visualbell
set hlsearch
set smartcase
set ignorecase
set incsearch
set autoindent
set expandtab
set tabstop=4
set shiftwidth=4
set softtabstop=4
set smartindent
set smarttab
set ruler
set undolevels=1000
set backspace=indent,eol,start
colorscheme distinguished
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment