Last active
October 24, 2016 22:26
-
-
Save stpettersens/de0c7af37e9285b043bde98fea0b1771 to your computer and use it in GitHub Desktop.
My Vim configuration.
This file contains hidden or 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
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