From b8ec5737d5e3cf94cc287bdb6635e088f6dbaa81 Mon Sep 17 00:00:00 2001 From: Eragos Date: Sun, 17 Jul 2016 15:05:45 +0200 Subject: [PATCH] remove the original header, because there significant changes though the original file now --- .vimrc | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) diff --git a/.vimrc b/.vimrc index d9919ca..8066ac0 100644 --- a/.vimrc +++ b/.vimrc @@ -1,45 +1,3 @@ -""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -" Maintainer: -" Amir Salihefendic -" http://amix.dk - amix@amix.dk -" -" Version: -" 5.0 - 29/05/12 15:43:36 -" -" Blog_post: -" http://amix.dk/blog/post/19691#The-ultimate-Vim-configuration-on-Github -" -" Awesome_version: -" Get this config, nice color schemes and lots of plugins! -" -" Install the awesome version from: -" -" https://github.com/amix/vimrc -" -" Syntax_highlighted: -" http://amix.dk/vim/vimrc.html -" -" Raw_version: -" http://amix.dk/vim/vimrc.txt -" -" Sections: -" -> General -" -> VIM user interface -" -> Colors and Fonts -" -> Files and backups -" -> Text, tab and indent related -" -> Visual mode related -" -> Moving around, tabs and buffers -" -> Status line -" -> Editing mappings -" -> vimgrep searching and cope displaying -" -> Spell checking -" -> Misc -" -> Helper functions -" -""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" - - """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " => General """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -156,7 +114,6 @@ set encoding=utf8 " Use Unix as the standard file type set ffs=unix,dos,mac - """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " => Files, backups and undo """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -165,7 +122,6 @@ set nobackup set nowb set noswapfile - """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " => Text, tab and indent related """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -204,7 +160,6 @@ autocmd ColorScheme * highlight WhiteSpaces gui=undercurl guifg=LightGray | matc vnoremap * :call VisualSelection('f') vnoremap # :call VisualSelection('b') - """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " => Moving around, tabs, windows and buffers """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -259,7 +214,6 @@ autocmd BufReadPost * " Remember info about open buffers on close set viminfo^=% - """""""""""""""""""""""""""""" " => Status line """""""""""""""""""""""""""""" @@ -269,7 +223,6 @@ set laststatus=2 " Format the status line set statusline=\ %{HasPaste()}%F%m%r%h\ %w\ \ CWD:\ %r%{getcwd()}%h\ \ \ Line:\ %l - """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " => Editing mappings """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -298,7 +251,6 @@ endfunc autocmd BufWrite *.py :call DeleteTrailingWS() autocmd BufWrite *.coffee :call DeleteTrailingWS() - """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " => vimgrep searching and cope displaying """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -330,7 +282,6 @@ map co ggVGy:tabnew:set syntax=qfpgg map n :cn map p :cp - """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " => Spell checking """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -346,7 +297,6 @@ map s? z= """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " => syntastic settings """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" - set statusline+=%#warningmsg# set statusline+=%{SyntasticStatuslineFlag()} set statusline+=%* @@ -408,7 +358,6 @@ function! VisualSelection(direction) range let @" = l:saved_reg endfunction - " Returns true if paste mode is enabled function! HasPaste() if &paste