Skip to content

Instantly share code, notes, and snippets.

@stpettersens
Last active October 24, 2016 22:26
Show Gist options
  • Save stpettersens/de0c7af37e9285b043bde98fea0b1771 to your computer and use it in GitHub Desktop.
Save stpettersens/de0c7af37e9285b043bde98fea0b1771 to your computer and use it in GitHub Desktop.
My Vim configuration.
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()
" let Vundle manage Vundle (required)
Plugin 'VundleVim/Vundle.vim'
" Plugins
Plugin 'YorickPeterse/happy_hacking.vim' " happy_hacking color scheme
Plugin 'rust-lang/rust.vim' " Rust support
Plugin 'cespare/vim-toml' " TOML support
call vundle#end() " (required)
filetype plugin indent on " (required)
set nu " apply line numbers
color happy_hacking " apply happy_hacking color scheme
au BufReadPost *.hbs set syntax=html " handlebars is basically HTML
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment