From 97d36e4675455c4f55d44d6bfc1daf7045cd9b99 Mon Sep 17 00:00:00 2001
From: Sebastian Semmler <sebastian@semmler.pro>
Date: Sun, 15 Jan 2017 13:44:17 +0100
Subject: [PATCH] Remove backup files

Remove backup files generated by mergetool
---
 .gitmodules.orig |  49 -----------------------
 .vimrc.orig      | 101 -----------------------------------------------
 2 files changed, 150 deletions(-)
 delete mode 100644 .gitmodules.orig
 delete mode 100644 .vimrc.orig

diff --git a/.gitmodules.orig b/.gitmodules.orig
deleted file mode 100644
index 9ff4818..0000000
--- a/.gitmodules.orig
+++ /dev/null
@@ -1,49 +0,0 @@
-# Core
-[submodule ".vim/bundle/pathogen"]
-        path = .vim/bundle/vim-pathogen
-        url = https://github.com/tpope/vim-pathogen.git
-
-[submodule ".vim/bundle/ack.vim"]
-        path = .vim/bundle/ack.vim
-        url = https://github.com/mileszs/ack.vim.git
-
-[submodule ".vim/bundle/nerdcommenter"]
-        path = .vim/bundle/nerdcommenter
-        url = https://github.com/scrooloose/nerdcommenter.git
-
-[submodule ".vim/bundle/nerdtree"]
-        path = .vim/bundle/nerdtree
-        url = https://github.com/scrooloose/nerdtree.git
-
-[submodule ".vim/bundle/supertab"]
-        path = .vim/bundle/supertab
-        url = https://github.com/ervandew/supertab.git
-
-[submodule ".vim/bundle/vimerl"]
-        path = .vim/bundle/vimerl
-        url = https://github.com/jimenezrick/vimerl.git
-
-[submodule ".vim/bundle/markdown"]
-        path = .vim/bundle/vim-markdown
-        url = https://github.com/tpope/vim-markdown.git
-
-[submodule ".vim/bundle/syntastic"]
-        path = .vim/bundle/syntastic
-        url = https://github.com/scrooloose/syntastic.git
-
-[submodule ".vim/bundle/vim-javascript-syntax"]
-        path = .vim/bundle/vim-javascript-syntax
-        url = https://github.com/jelera/vim-javascript-syntax.git
-
-[submodule ".vim/bundle/JavaScript-Indent"]
-        path = .vim/bundle/JavaScript-Indent
-        url = https://github.com/vim-scripts/JavaScript-Indent.git
-<<<<<<< HEAD
-[submodule "dash.vim"]
-	path = .vim/bundle/dash.vim
-	url = https://github.com/rizzatti/dash.vim.git
-=======
-[submodule ".vim/bundle/ctrlp.vim"]
-	path = .vim/bundle/ctrlp.vim
-	url = https://github.com/ctrlpvim/ctrlp.vim.git
->>>>>>> 3a3d0bc9a3eed99ba5b125b33d8b396da582e96b
diff --git a/.vimrc.orig b/.vimrc.orig
deleted file mode 100644
index c8636d0..0000000
--- a/.vimrc.orig
+++ /dev/null
@@ -1,101 +0,0 @@
-set nocompatible
-
-let mapleader=','
-
-" Initialize Pathogen
-runtime bundle/vim-pathogen/autoload/pathogen.vim
-execute pathogen#infect()
-
-" Enable syntax highlighting
-syntax on
-filetype plugin indent on
-
-" Colorscheme see https://github.com/hukl/Smyck-Color-Scheme
-color smyck
-
-" Add line numbers
-set number
-set ruler
-
-" Set encoding
-set encoding=utf-8
-
-" Whitespace stuff
-set nowrap
-set tabstop=2
-set shiftwidth=2
-set softtabstop=2
-set expandtab
-
-" Show trailing spaces and highlight hard tabs
-set list listchars=tab:»·,trail:·
-
-" allow backspacing over everything in insert mode
-set backspace=indent,eol,start
-
-" Strip trailing whitespaces on each save
-fun! <SID>StripTrailingWhitespaces()
-    let l = line(".")
-    let c = col(".")
-    %s/\s\+$//e
-    call cursor(l, c)
-endfun
-autocmd BufWritePre * :call <SID>StripTrailingWhitespaces()
-
-" Close window if last remaining window is NerdTree
-autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
-
-" Search related settings
-set incsearch
-set hlsearch
-
-" Map Ctrl+l to clear highlighted searches
-nnoremap <silent> <C-l> :<C-u>nohlsearch<CR><C-l>
-
-" Highlight characters behind the 80 chars margin
-:au BufWinEnter * let w:m2=matchadd('ColumnMargin', '\%>80v.\+', -1)
-
-" Disable code folding
-set nofoldenable
-
-<<<<<<< HEAD
-" Directories for swp files
-set backupdir=~/.vim/backups
-set directory=~/.vim/backups
-
-=======
->>>>>>> 3a3d0bc9a3eed99ba5b125b33d8b396da582e96b
-" NERDTree configuration
-let NERDTreeIgnore=['\.pyc$', '\.rbc$', '\~$']
-map <Leader>n :NERDTreeToggle<CR>
-
-" make uses real tabs
-au FileType make set noexpandtab
-
-" Erlang uses 4 spaces
-au FileType erlang set softtabstop=4 tabstop=4 shiftwidth=4
-
-" Thorfile, Rakefile, Vagrantfile and Gemfile are Ruby
-au BufRead,BufNewFile {Gemfile,Rakefile,Vagrantfile,Thorfile,config.ru}    set ft=ruby
-
-" add json syntax highlighting
-au BufNewFile,BufRead *.json set ft=javascript
-
-" make Python follow PEP8 ( http://www.python.org/dev/peps/pep-0008/ )
-au FileType python set softtabstop=4 tabstop=4 shiftwidth=4 textwidth=79
-
-" ctrp custom ignores
-let g:ctrlp_custom_ignore = {
-  \ 'dir':  '\.git$\|\.hg$\|\.svn$\|\.eunit$',
-  \ 'file': '\.exe$\|\.so$\|\.dll\|\.beam$\|\.DS_Store$'
-  \ }
-
-let g:erlangCheckFile = "~/.vim/bundle/vimerl/compiler/erlang_check_file.erl"
-let g:erlangHighlightErrors = 1
-
-" Use Ag instead of Ack
-let g:ackprg = 'ag --nogroup --nocolor --column'
-
-" Disable Swap and Backup Files
-set noswapfile
-set nobackup
-- 
GitLab