]> git.zndr.dk Git - dotfiles.git/commitdiff
Add vim markdown
authorJannik ZANDER <jannikz@gmail.com>
Mon, 2 May 2016 18:21:07 +0000 (20:21 +0200)
committerJannik Zander <jannikz@Janniks-MBP.opasia.dk>
Mon, 2 May 2016 19:36:41 +0000 (21:36 +0200)
.vimrc

diff --git a/.vimrc b/.vimrc
index b04c81072aac46734fd129d1b1b6cc639f23e273..52239eb857aaee3680e156eb8e069cf398c77fe4 100644 (file)
--- 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