Skip to content

Commit

Permalink
remove useless mappings from targets
Browse files Browse the repository at this point in the history
  • Loading branch information
adragomir committed Mar 22, 2016
1 parent deb5040 commit 8fb2995
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .vimrc
Expand Up @@ -224,8 +224,8 @@ Plug 'vim-ruby/vim-ruby', { 'dir': '~/.vim/bundle/vim-ruby' }
"Plug 'sudar/vim-arduino-syntax', { 'dir': '~/.vim/bundle/vim-arduino-syntax' }
Plug 'stephpy/vim-yaml', { 'dir': '~/.vim/bundle/vim-yaml' }
Plug 'guns/vim-clojure-static', { 'dir': '~/.vim/bundle/vimclojure-static' }
Plug 'guns/vim-sexp', { 'dir': '~/.vim/bundle/vim-sexp' }
Plug 'tpope/vim-sexp-mappings-for-regular-people', { 'dir': '~/.vim/bundle/vim-sexp-mappings-for-regular-people' }
Plug 'guns/vim-sexp', { 'dir': '~/.vim/bundle/vim-sexp', 'for': ['clojure', 'lisp', 'scheme']}
Plug 'tpope/vim-sexp-mappings-for-regular-people', { 'dir': '~/.vim/bundle/vim-sexp-mappings-for-regular-people', 'for': ['clojure', 'lisp', 'scheme'] }
Plug 'rhysd/vim-clang-format', { 'dir': '~/.vim/bundle/vim-clang-format' }
Plug 'Glench/Vim-Jinja2-Syntax', { 'dir': '~/.vim/bundle/vim-jinja2-syntax' }
Plug 'eagletmt/ghcmod-vim', { 'dir': '~/.vim/bundle/ghcmod-vim' }
Expand Down Expand Up @@ -964,6 +964,13 @@ let g:SuperTabContextDefaultCompletionType = "<c-n>"
" }}}

" targets.vim {{{
let g:targets_nlNL = ' '
let g:targets_pairs = '()b {}b []b <>b'
let g:targets_quotes = '" '' `'
let g:targets_separators = ', . ; : + - = ~ _ / |'
let g:targets_argTrigger = ','
let g:targets_argOpening = '[([]'
let g:targets_argClosing = '[])]'

" }}}

Expand Down

0 comments on commit 8fb2995

Please sign in to comment.