From 7403c5bd22658b6403b07cd00c9963cc3ed23a24 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Tue, 9 Dec 2014 15:02:12 +0100 Subject: [PATCH] Added digraph to easily enter accented characters --- .vimrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.vimrc b/.vimrc index 3e5d9c6..ab1e261 100644 --- a/.vimrc +++ b/.vimrc @@ -117,6 +117,12 @@ map jt :%!json_xs -f json -t json-pretty " Fly through buffers instead of cycling nnoremap l :ls:b +" Enables input of special characters by a combination of two characters. +" Example: Type 'a', erase it by typing CTRL-H - and then type ':' - this +" results in the umlaut: รค So Vim remembers the character you have erased and +" combines it with the character you have typed "over" the previous one. +set digraph + " 2014-01-29 some sane Python settings autocmd FileType python set tabstop=4 autocmd FileType python set shiftwidth=4