vimrc: Some stuff to observe coding guidelines

This commit is contained in:
madmaurice 2015-12-14 22:30:46 +01:00
parent 1653468845
commit 3977f17412

View file

@ -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.\+'
" }}}