From 83958edcc2c4432bc3d427e6fe4e5663147d2921 Mon Sep 17 00:00:00 2001 From: Jannik ZANDER Date: Mon, 2 May 2016 20:21:07 +0200 Subject: [PATCH] Add vim markdown --- .vimrc | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.vimrc b/.vimrc index b04c810..52239eb 100644 --- a/.vimrc +++ b/.vimrc @@ -4,19 +4,24 @@ call vundle#begin('$HOME/.vim/bundle/') Plugin 'VundleVim/Vundle.vim' Plugin 'thanthese/Tortoise-Typing' +Plugin 'altercation/vim-colors-solarized.git' +Plugin 'plasticboy/vim-markdown' call vundle#end() " required filetype plugin indent on " required - +syntax enable " syntaxs highlightning set backspace=2 " backspace in insert mode works like normal editor -syntax on " syntax highlighting -filetype indent on " activates indenting for files set autoindent " auto indenting set number " line numbers -colorscheme desert " colorscheme desert set nobackup " get rid of anoying ~file +"let g:solarized_termcolors=256 +colorscheme solarized +set background=dark + +let g:vim_markdown_folding_disabled = 1 + let $LOCALFILE=expand("~/.vimrc_local") if filereadable($LOCALFILE) source $LOCALFILE -- 2.43.0