Created
November 7, 2016 09:12
-
-
Save braynm/628ff13d23ba4f7b1f9f65732938e316 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
colorscheme badwolf " awesome colorscheme | |
syntax enable " enable syntax processing | |
set number "Line numbers are good | |
set backspace=indent,eol,start "Allow backspace in insert mode | |
set history=1000 "Store lots of :cmdline history | |
set showcmd "Show incomplete cmds down the bottom | |
set showmode "Show current mode down the bottom | |
set gcr=a:blinkon0 "Disable cursor blink | |
set visualbell "No sounds | |
set autoread "Reload files changed outside vim | |
set hidden | |
syntax on | |
set autoindent | |
set smartindent | |
set smarttab | |
set shiftwidth=2 | |
set softtabstop=2 | |
set tabstop=1 | |
set expandtab | |
filetype plugin on | |
filetype indent on | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#rc() | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'neovimhaskell/haskell-vim' | |
Plugin 'StanAngeloff/php.vim' | |
Plugin 'elixir-lang/vim-elixir' | |
Plugin 'vim-erlang/vim-erlang-runtime' | |
Plugin 'ElmCast/elm-vim' | |
Plugin 'scrooloose/nerdtree' | |
Plugin 'mattn/emmet-vim' | |
Plugin 'skammer/vim-css-color' | |
Plugin 'gregsexton/MatchTag' | |
Plugin 'alvan/vim-closetag' | |
Plugin 'mxw/vim-jsx' | |
Plugin 'ctrlpvim/ctrlp.vim' | |
call vundle#end() " required | |
filetype plugin indent on " required |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment