From f9b8a6e27423d21dc2a3954cf9246026faebe521 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Wed, 19 Nov 2014 17:29:09 +0000 Subject: updates notes --- vim/vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/vimrc b/vim/vimrc index 948413a..210e70b 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -1,4 +1,4 @@ -"" Required by Vundle +" Required by Vundle set nocompatible filetype off set rtp+=~/.vim/bundle/vundle/ -- cgit v1.2.3 From dc6c8cd776156a459fae5faf39462aa3e028ff92 Mon Sep 17 00:00:00 2001 From: Urbain Vaes Date: Thu, 20 Nov 2014 14:53:21 +0000 Subject: nothing much --- mutt/muttrc | 4 ++++ vim/vimrc | 22 ++++++++++------------ vim/vimundo | 0 3 files changed, 14 insertions(+), 12 deletions(-) create mode 100644 vim/vimundo diff --git a/mutt/muttrc b/mutt/muttrc index 8de7b7c..7811ff2 100644 --- a/mutt/muttrc +++ b/mutt/muttrc @@ -39,6 +39,10 @@ mailboxes +Main/Main \ +Main/Sent \ +Main/Drafts \ +# Prompts +set delete = yes +set quit = yes + # Encryption source /usr/share/doc/mutt/examples/gpg.rc set pgp_use_gpg_agent = yes diff --git a/vim/vimrc b/vim/vimrc index 210e70b..27d5516 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -1,4 +1,4 @@ -" Required by Vundle +"" Required by Vundle set nocompatible filetype off set rtp+=~/.vim/bundle/vundle/ @@ -111,7 +111,7 @@ set incsearch set noswapfile set nowritebackup set undofile -set undodir=/home/urbain/.vimundo/ +set undodir=/home/urbain/.vim/vimundo/ " Layout window set nonumber @@ -169,23 +169,21 @@ autocmd! BufNewFile,BufRead,BufWrite * :call UpdateColorscheme() "" Custom mappings -" Definition of leader and localleader +" Leader maps let mapleader = "\\" let maplocalleader = "-" - -" Leader maps nmap -nmap p -nmap t + +" General +nnoremap te :tabedit +nnoremap tn :tabnew +nnoremap to :tabonly +nnoremap w :w +nnoremap q :q! nnoremap h :set hlsearch! nnoremap n :set relativenumber! -nnoremap q :q! nnoremap sv :source ~/.vim/vimrc nnoremap sc :source % -nnoremap w :w -nnoremap te :tabedit -nnoremap tn :tabnew -nnoremap to :tabonly " Other maps nnoremap o diff --git a/vim/vimundo b/vim/vimundo new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3