Last active
August 29, 2015 14:11
-
-
Save tyjak/acad04914ec140fae802 to your computer and use it in GitHub Desktop.
my vimrc for runnable
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 '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