# HG changeset patch # User Steve Losh # Date 1374949325 14400 # Node ID fb598cd18fe9cd2902455af17bdf2c69d2b68277 # Parent ea3fd4a6795ae2c5b27006f03201805a2454158e More diff -r ea3fd4a6795a -r fb598cd18fe9 .hgsubstate --- a/.hgsubstate Thu Jul 18 00:49:44 2013 -0400 +++ b/.hgsubstate Sat Jul 27 14:22:05 2013 -0400 @@ -3,7 +3,7 @@ 4d95cb18a3b420154ef978c53de1d2e692f8343d mercurial/templates 64981213be2efd939e6e6e109e2b32c24e95fd95 vim/bundle/AnsiEsc.vim f183a345a0c10caed7684d07dabae33e007c7590 vim/bundle/ack -b8e07a24e77d3bad16a89bde409f97ccc307486a vim/bundle/badwolf +db3707cbd8706f4bb054959ecc5cee82ac45687b vim/bundle/badwolf 8533fffd9fbb690dfc8e334f91a10c72e35a6dce vim/bundle/clam 949adf73ae1a82c48cd951677c055bd38a30af99 vim/bundle/clojure-static dc349bb7d30f713d770fc1fa0fe209e6aab82dc8 vim/bundle/commentary diff -r ea3fd4a6795a -r fb598cd18fe9 vim/vimrc --- a/vim/vimrc Thu Jul 18 00:49:44 2013 -0400 +++ b/vim/vimrc Sat Jul 27 14:22:05 2013 -0400 @@ -70,7 +70,7 @@ " iTerm2 is currently slow as ball at rendering the nice unicode lines, so for " now I'll just use ascii pipes. They're ugly but at least I won't want to kill " myself when trying to move around a file. -" set fillchars=diff:⣿,vert:│ +set fillchars=diff:⣿,vert:│ set fillchars=diff:⣿,vert:\| " Don't try to highlight lines longer than 800 characters. @@ -472,8 +472,8 @@ runtime macros/matchit.vim map % -unmap [% -unmap ]% +silent! unmap [% +silent! unmap ]% " Made D behave nnoremap D d$ @@ -692,6 +692,34 @@ augroup END " }}} +" Common Lisp {{{ + +augroup ft_commonlisp + au! + + au FileType lisp RainbowParenthesesActivate + au syntax lisp RainbowParenthesesLoadRound + au syntax lisp RainbowParenthesesLoadSquare + au syntax lisp RainbowParenthesesLoadBraces + + au FileType lisp noremap () :call PareditWrap("(", ")") + au FileType lisp noremap )( :call PareditSplice() + au FileType lisp noremap (( :call PareditMoveLeft() + au FileType lisp noremap )) :call PareditMoveRight() + au FileType lisp noremap (j :call PareditJoin() + au FileType lisp noremap (s :call PareditSplit() + au FileType lisp noremap )j :call PareditJoin() + au FileType lisp noremap )s :call PareditSplit() + au FileType lisp noremap [[ :call PareditSmartJumpOpening(0) + au FileType lisp noremap ]] :call PareditSmartJumpClosing(0) + " )) + + " Indent top-level form. + au FileType lisp nmap = mz99[(v%='z + " ]) +augroup END + +" }}} " Confluence {{{ augroup ft_c