Skip to content

Instantly share code, notes, and snippets.

@tyjak
Last active August 29, 2015 14:11
Show Gist options
  • Save tyjak/acad04914ec140fae802 to your computer and use it in GitHub Desktop.
Save tyjak/acad04914ec140fae802 to your computer and use it in GitHub Desktop.
my vimrc for runnable
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 'gmarik/Vundle.vim'
Plugin 'vimwiki'
Plugin 'fugitive.vim'
Plugin 'vimoutliner/vimoutliner'
Plugin 'mattn/webapi-vim'
Plugin 'mattn/gist-vim'
Plugin 'airblade/vim-gitgutter'
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
let mapleader = ","
let maplocalleader = ',,'
map ,vv :e /etc/vim/vimrc.local<CR>
autocmd! bufwritepost vimrc.local source /etc/vim/vimrc.local
silent! colo votl_dark
let g:vimwiki_list = [{'path_html' : '/var/www/'}]
" delete authentication git file
au VimLeave * !rm ~/.gist-vim
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment