From b7bd0305f0ec33a7c3b49e9eb6416e0be65a9417 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Mon, 10 Feb 2014 18:01:48 +0100 Subject: [PATCH] vimrc: Map v to "verbatim" mode. --- vimrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vimrc b/vimrc index 0cfc4cb..fb56e0c 100644 --- a/vimrc +++ b/vimrc @@ -614,6 +614,10 @@ if has('eval') endfunction nnoremap t :call UseTabs() endif +" Enable "verbatim" mode. Used to view files with long lines or without syntax +" coloring. +nnoremap v :set nolist nowrap nospell synmaxcol=0 + \ :2match " Make last active window the only window. Similar to o. nnoremap O po -- 2.44.1