]> Untitled Git - vimfiles.git/commitdiff
Remove unnecessary comments
authorPhilippe Hürlimann <p@hurlimann.org>
Tue, 15 Nov 2016 19:51:07 +0000 (20:51 +0100)
committerPhilippe Hürlimann <p@hurlimann.org>
Tue, 15 Nov 2016 19:51:07 +0000 (20:51 +0100)
ftplugin/mail.vim
vimrc

index 145e58b8f1ceb79d05a8a5f70be52f133c97b8a8..ea9fa8f3730136afe77019cf90d9b3da54fa268b 100644 (file)
@@ -1,2 +1 @@
-" limit textwidth when writing E-Mails in mutt and enable spellchecking
 set tw=72 spell spelllang=de_ch
diff --git a/vimrc b/vimrc
index 5052d9a3e53a173d54843f91086e2124840c1b02..c12232dc0a45cb66a814b86a8ab78dfc889e3bce 100644 (file)
--- a/vimrc
+++ b/vimrc
@@ -50,7 +50,6 @@ let g:UltiSnipsListSnippets="<c-l>"
 
 let g:rainbow_active = 1
 
-" set leader and local leader
 let mapleader = ","
 let maplocalleader = "_"
 
@@ -63,7 +62,6 @@ let delimitMate_expand_space = 1
 set cursorcolumn
 set cursorline
 
-" turn on filetype specific stuff
 filetype plugin indent on
 
 colorscheme bitterjug
@@ -71,20 +69,13 @@ set background=light
 
 syntax on
 
-" turn on those nice numbers on the left side
 set number
-
-" and make them relative
 set relativenumber
 
-"Incremental search
 set incsearch
-
-" smartsearch
 set ignorecase
 set smartcase
 
-" tab settings
 set expandtab
 set smarttab
 set tabstop=4
@@ -93,17 +84,13 @@ set softtabstop=4
 
 set nobackup
 
-" gui options
 if has('gui_running')
     set guioptions=aAceif
 endif
 
-" Bindings
 nnoremap  <F8> :TagbarToggle<CR>
 
-" user defined commands
 command Vr tabedit ~/.vim/vimrc
 command Vt execute "tabedit ~/.vim/ftplugin/" . &filetype . ".vim"
 
-" ctrlp should change working directory
 let g:ctrlp_working_path_mode = 0