Skip to content

Commit

Permalink
Retire stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
rstacruz committed May 27, 2015
1 parent 3178d1c commit ed6eee6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion UltiSnips/javascript.snippets
Expand Up @@ -7,7 +7,7 @@ function
endsnippet

snippet fn "function"
function ($1) $0
function () {
endsnippet

snippet { "{ ... }"
Expand Down
6 changes: 3 additions & 3 deletions bin/restore
@@ -1,6 +1,6 @@
#!/bin/sh
# Generated by vim-plug
# Tue May 26 17:58:52 2015
# Wed May 27 11:08:32 2015

vim +PlugUpdate +qa

Expand Down Expand Up @@ -29,6 +29,7 @@ cd $PLUG_HOME/vim-bundler/ && git reset --hard 207e213
cd $PLUG_HOME/vim-coffee-script/ && git reset --hard 32fe889
cd $PLUG_HOME/vim-colors/ && git reset --hard 9522f2f
cd $PLUG_HOME/vim-commentary/ && git reset --hard 9c68513
cd $PLUG_HOME/vim-css-shorthand/ && git reset --hard 8f4a72d
cd $PLUG_HOME/vim-css3-syntax/ && git reset --hard 33d21c7
cd $PLUG_HOME/vim-dispatch/ && git reset --hard e7ed067
cd $PLUG_HOME/vim-easy-align/ && git reset --hard c62d124
Expand All @@ -49,6 +50,7 @@ cd $PLUG_HOME/vim-multiple-cursors/ && git reset --hard 5d23963
cd $PLUG_HOME/vim-node/ && git reset --hard 07a5e9f
cd $PLUG_HOME/vim-opinion/ && git reset --hard b38a1f1
cd $PLUG_HOME/vim-pathogen/ && git reset --hard b9fb0df
cd $PLUG_HOME/vim-python-combined/ && git reset --hard 3f7aefa
cd $PLUG_HOME/vim-rails/ && git reset --hard 12addfc
cd $PLUG_HOME/vim-repeat/ && git reset --hard 7a6675f
cd $PLUG_HOME/vim-sensible/ && git reset --hard d0beb8a
Expand All @@ -57,11 +59,9 @@ cd $PLUG_HOME/vim-sleuth/ && git reset --hard 1db371f
cd $PLUG_HOME/vim-snippets/ && git reset --hard 8be99da
cd $PLUG_HOME/vim-stylus/ && git reset --hard 07340e9
cd $PLUG_HOME/vim-surround/ && git reset --hard 772ab95
cd $PLUG_HOME/vim-ultisnips-css/ && git reset --hard 6be431d
cd $PLUG_HOME/vim-vinegar/ && git reset --hard ac89396
cd $PLUG_HOME/vim-visualstar/ && git reset --hard a758431
cd $PLUG_HOME/vim-xmark/ && git reset --hard acc6f1f
cd $PLUG_HOME/vimproc.vim/ && git reset --hard c286dcb
cd $PLUG_HOME/vimshell.vim/ && git reset --hard 4939e10
cd $PLUG_HOME/vitality.vim/ && git reset --hard 4bb8c07

1 change: 1 addition & 0 deletions plugin/plugins/emmet.vim
Expand Up @@ -3,3 +3,4 @@ if globpath(&rtp, "plugin/emmet.vim") == ""
endif

imap <C-e> <C-y>,
vmap <C-e> <C-y>,
12 changes: 10 additions & 2 deletions vimrc.vim
Expand Up @@ -17,8 +17,8 @@ if $VIM_MINIMAL == ''
Plug 'scrooloose/nerdtree'
Plug 'bling/vim-airline'
Plug 'SirVer/ultisnips'
Plug 'rstacruz/vim-ultisnips-css'
Plug 'Shougo/vimshell.vim'
" Plug 'Shougo/vimshell.vim'
" Plug 'rstacruz/vim-ultisnips-css' retired :)

" Unite
Plug 'Shougo/vimproc.vim', { 'do': 'make' }
Expand Down Expand Up @@ -59,8 +59,15 @@ if $VIM_MINIMAL == ''
Plug 'tpope/vim-sleuth'
Plug 'tpope/vim-repeat'
Plug 'justincampbell/vim-eighties'
Plug 'rstacruz/vim-css-shorthand'
" Plug 'roman/golden-ratio'

" Plug 'jiangmiao/auto-pairs'
" I don't really like this becaus when you have:
" x = |foo
" And you want to quote foo, another ' gets inserted:
" x = '|'foo

" Not working well with nvim
if !has('nvim')
Plug 'markwu/ZoomWin'
Expand All @@ -80,6 +87,7 @@ if $VIM_MINIMAL == ''
Plug 'ledger/vim-ledger'
Plug 'moll/vim-node'
Plug 'dag/vim-fish'
Plug 'mitsuhiko/vim-python-combined'

" Disabled
" Plug 'mitee/vim-gf-python'
Expand Down

0 comments on commit ed6eee6

Please sign in to comment.