dotfiles

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 65814d0016de87180505d1183f4132fc959041bf
parent 0b23651ea5d4f84be75389dad0997917627beb10
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Fri, 24 Jan 2014 22:11:46 +0200

Deleting dotfiles

Diffstat:
D.vimrc | 2--
D.vimrc-2013-12 | 103-------------------------------------------------------------------------------
D.vimrc.20131209_1386604044 | 103-------------------------------------------------------------------------------
D.vimrc.before | 2--
D.vimrc.bundles | 2--
D.vimrc.bundles.local | 3---
D.vimrc.local | 26--------------------------
7 files changed, 0 insertions(+), 241 deletions(-)

diff --git a/.vimrc b/.vimrc @@ -1 +0,0 @@ -/home/yankel/.spf13-vim-3/.vimrc -\ No newline at end of file diff --git a/.vimrc-2013-12 b/.vimrc-2013-12 @@ -1,103 +0,0 @@ -" Some Linux distributions set filetype in /etc/vimrc. -" Clear filetype flags before changing runtimepath to force Vim to reload them. - -filetype off " required by github.com/gmarik/vundle -filetype plugin indent off - -set runtimepath+=$GOROOT/misc/vim - -set nocompatible " be iMproved - -set rtp+=~/.vim/bundle/vundle/ -call vundle#rc() - - -set runtimepath+=$GOROOT/misc/vim " set by Golang - -Bundle 'gmarik/vundle' - -"Bundle 'jceb/vim-orgmode' -Bundle 'bitc/vim-hdevtools' -Bundle 'lukerandall/haskellmode-vim' -Bundle 'eagletmt/ghcmod-vim' - -Bundle 'hsitz/VimOrganizer' -Bundle 'NrrwRgn' -Bundle 'utl.vim' - -Bundle 'Syntastic' - -Bundle 'VOoM' - -"Bundle 'scrooloose/syntastic' - -Bundle 'Blackrush/vim-gocode' - -Bundle 'ivanov/vim-ipython' - -Bundle 'Python-mode-klen' - -Bundle 'davidhalter/jedi-vim' - -Bundle 'neocomplcache' -Bundle 'neco-ghc' - -set expandtab -set smartindent -set tabstop=4 -set softtabstop=4 -set shiftwidth=4 -set smarttab -set shiftround -set nojoinspaces - -""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" - -" Sample .vimrc file by Martin Brochhaus -" Presented at PyCon APAC 2012 - - -" Automatic reloading of .vimrc -autocmd! bufwritepost .vimrc source % - - -" Better copy & paste -" When you want to paste large blocks of code into vim, press F2 before you -" paste. At the bottom you should see ``-- INSERT (paste) --``. -" Doesn't work on gnome-terminal because of its own keybindings. - -"" set pastetoggle=<F2> -"" set clipboard=unnamed - - -" Rebind <Leader> key -" I like to have it here becuase it is easier to reach than the default and -" it is next to ``m`` and ``n`` which I use for navigating between tabs. -"" let mapleader = "," - - -" Bind nohl -" Removes highlight of your last search -" ``<C>`` stands for ``CTRL`` and therefore ``<C-n>`` stands for ``CTRL+n`` -"noremap <C-n> :nohl<CR> -"vnoremap <C-n> :nohl<CR> -"inoremap <C-n> :nohl<CR> - - -" Quicksave command -"noremap <C-Z> :update<CR> -"vnoremap <C-Z> <C-C>:update<CR> -"inoremap <C-Z> <C-O>:update<CR> - -""""""""""""""""""""""""""""""""""""""""""" - -filetype plugin indent on " required by github/gmarik/vundle -filetype on -syntax on - -set number - - -"https://github.com/hsitz/VimOrganizer/blob/master/INSTALL.txt -au! BufRead,BufWrite,BufWritePost,BufNewFile *.org -au BufEnter *.org call org#SetOrgFileType() diff --git a/.vimrc.20131209_1386604044 b/.vimrc.20131209_1386604044 @@ -1,103 +0,0 @@ -" Some Linux distributions set filetype in /etc/vimrc. -" Clear filetype flags before changing runtimepath to force Vim to reload them. - -filetype off " required by github.com/gmarik/vundle -filetype plugin indent off - -set runtimepath+=$GOROOT/misc/vim - -set nocompatible " be iMproved - -set rtp+=~/.vim/bundle/vundle/ -call vundle#rc() - - -set runtimepath+=$GOROOT/misc/vim " set by Golang - -Bundle 'gmarik/vundle' - -"Bundle 'jceb/vim-orgmode' -Bundle 'bitc/vim-hdevtools' -Bundle 'lukerandall/haskellmode-vim' -Bundle 'eagletmt/ghcmod-vim' - -Bundle 'hsitz/VimOrganizer' -Bundle 'NrrwRgn' -Bundle 'utl.vim' - -Bundle 'Syntastic' - -Bundle 'VOoM' - -"Bundle 'scrooloose/syntastic' - -Bundle 'Blackrush/vim-gocode' - -Bundle 'ivanov/vim-ipython' - -Bundle 'Python-mode-klen' - -Bundle 'davidhalter/jedi-vim' - -Bundle 'neocomplcache' -Bundle 'neco-ghc' - -set expandtab -set smartindent -set tabstop=4 -set softtabstop=4 -set shiftwidth=4 -set smarttab -set shiftround -set nojoinspaces - -""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" - -" Sample .vimrc file by Martin Brochhaus -" Presented at PyCon APAC 2012 - - -" Automatic reloading of .vimrc -autocmd! bufwritepost .vimrc source % - - -" Better copy & paste -" When you want to paste large blocks of code into vim, press F2 before you -" paste. At the bottom you should see ``-- INSERT (paste) --``. -" Doesn't work on gnome-terminal because of its own keybindings. - -"" set pastetoggle=<F2> -"" set clipboard=unnamed - - -" Rebind <Leader> key -" I like to have it here becuase it is easier to reach than the default and -" it is next to ``m`` and ``n`` which I use for navigating between tabs. -"" let mapleader = "," - - -" Bind nohl -" Removes highlight of your last search -" ``<C>`` stands for ``CTRL`` and therefore ``<C-n>`` stands for ``CTRL+n`` -"noremap <C-n> :nohl<CR> -"vnoremap <C-n> :nohl<CR> -"inoremap <C-n> :nohl<CR> - - -" Quicksave command -"noremap <C-Z> :update<CR> -"vnoremap <C-Z> <C-C>:update<CR> -"inoremap <C-Z> <C-O>:update<CR> - -""""""""""""""""""""""""""""""""""""""""""" - -filetype plugin indent on " required by github/gmarik/vundle -filetype on -syntax on - -set number - - -"https://github.com/hsitz/VimOrganizer/blob/master/INSTALL.txt -au! BufRead,BufWrite,BufWritePost,BufNewFile *.org -au BufEnter *.org call org#SetOrgFileType() diff --git a/.vimrc.before b/.vimrc.before @@ -1 +0,0 @@ -/home/yankel/.spf13-vim-3/.vimrc.before -\ No newline at end of file diff --git a/.vimrc.bundles b/.vimrc.bundles @@ -1 +0,0 @@ -/home/yankel/.spf13-vim-3/.vimrc.bundles -\ No newline at end of file diff --git a/.vimrc.bundles.local b/.vimrc.bundles.local @@ -1,3 +0,0 @@ -Bundle 'kien/rainbow_parentheses.vim' -Bundle 'vaxe' -Bundle 'hylang/vim-hy' diff --git a/.vimrc.local b/.vimrc.local @@ -1,26 +0,0 @@ -let g:rbpt_colorpairs = [ - \ ['brown', 'RoyalBlue3'], - \ ['Darkblue', 'SeaGreen3'], - \ ['darkgray', 'DarkOrchid3'], - \ ['darkgreen', 'firebrick3'], - \ ['darkcyan', 'RoyalBlue3'], - \ ['darkred', 'SeaGreen3'], - \ ['darkmagenta', 'DarkOrchid3'], - \ ['brown', 'firebrick3'], - \ ['gray', 'RoyalBlue3'], - \ ['black', 'SeaGreen3'], - \ ['darkmagenta', 'DarkOrchid3'], - \ ['Darkblue', 'firebrick3'], - \ ['darkgreen', 'RoyalBlue3'], - \ ['darkcyan', 'SeaGreen3'], - \ ['darkred', 'DarkOrchid3'], - \ ['red', 'firebrick3'], - \ ] -let g:rbpt_max = 16 - -let g:rbpt_loadcmd_toggle = 0 - -au VimEnter * RainbowParenthesesToggle -au Syntax * RainbowParenthesesLoadRound -au Syntax * RainbowParenthesesLoadSquare -au Syntax * RainbowParenthesesLoadBraces