From: Philippe Hürlimann
Date: Tue, 15 Nov 2016 19:51:07 +0000 (+0100)
Subject: Remove unnecessary comments
X-Git-Url: https://git.hurlimann.org/?a=commitdiff_plain;h=c445d2a96d7695fa1b85c969ec69eb98203e2b16;p=vimfiles.git
Remove unnecessary comments
---
diff --git a/ftplugin/mail.vim b/ftplugin/mail.vim
index 145e58b..ea9fa8f 100644
--- a/ftplugin/mail.vim
+++ b/ftplugin/mail.vim
@@ -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 5052d9a..c12232d 100644
--- a/vimrc
+++ b/vimrc
@@ -50,7 +50,6 @@ let g:UltiSnipsListSnippets=""
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 :TagbarToggle
-" 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