From 5f9813c9bfc64bcb4af2f4d6aa9544690366df19 Mon Sep 17 00:00:00 2001
From: Max Christian Pohle
Date: Wed, 14 Sep 2016 13:47:36 +0200
Subject: disable code folding

---
 vimrc | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

(limited to 'vimrc')

diff --git a/vimrc b/vimrc
index 467a1f3..42397ce 100644
--- a/vimrc
+++ b/vimrc
@@ -33,6 +33,8 @@ let g:airline_theme='papercolor'                      | " specifies which colors
 
 
 " Additional =========================================.
+Plugin 'taglist-plus'                                 | " quick code navigator
+
 Plugin 'sheerun/vim-polyglot'                         | " better syntax highlighting/indentation for multiple languages
 Plugin 'gregsexton/matchtag'                          | " highlights closing ML tags like braces
 Plugin 'loremipsum'                                   | " Sample text generator
@@ -58,8 +60,9 @@ vnoremap > >gv
 
 
 nnoremap <C-Tab> :bn<CR>|         " lets one use CTRL+Tab to switch between tabs
-nnoremap <C-S-Tab> :bp<CR>|   " use CTRL+Shift+Tab to switch to preview tab
+nnoremap <C-S-Tab> :bp<CR>|       " use CTRL+Shift+Tab to switch to preview tab
 
+nnoremap <C-l> :TlistToggle<CR>|  " bind TagList to Hotkey Ctrl+L
 
 " Disabled ===========================================.
 "# Plugin 'indenthtml.vim'                               | " works better with mixed html/css/javascript
@@ -87,6 +90,7 @@ set clipboard=unnamedplus     | " makes copy and paste work (autoselectplus migh
 set number                    | " toggle line numbers
 set relativenumber            | " displays current lines line no as zero point from where relative numbers are getting counted
 set list                      | " shows unprinable characters in the current line
+set nofoldenable              | " disable code folding. I hate code folding
 
 set spell spelllang=en,de     | " enable spell checker
 set splitbelow                | " open new windows below the current one (i find that more intuitive)
-- 
cgit v1.2.3