From 3977f17412491f182b3d4ff4774dfdf93000ea1e Mon Sep 17 00:00:00 2001 From: Valentin Gehrke <madmaurice@zom.bi> Date: Mon, 14 Dec 2015 22:30:46 +0100 Subject: [PATCH] vimrc: Some stuff to observe coding guidelines --- vim/.vimrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vim/.vimrc b/vim/.vimrc index d6d785d..3f2b3bd 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -207,6 +207,8 @@ nnoremap <F1> <nop> vnoremap <F1> <nop> " -- Make Y behave correct map Y y$ +" -- Quick adding of spaces +nnoremap <silent> <space> i<space><Esc>l " Showing and hiding special characters nnoremap <silent> <leader>l :set nolist!<cr> @@ -284,3 +286,6 @@ map f <Plug>(easymotion-s2) " --- Auto pairs config {{{ let g:lexima_enable_basic_rules = 1 " }}} +" --- Codestyle {{{ +match ErrorMsg '\%>80v.\+' +" }}}