Skip to content

Instantly share code, notes, and snippets.

@jiroukaja
Created May 31, 2012 13:12
Show Gist options
  • Save jiroukaja/2843352 to your computer and use it in GitHub Desktop.
Save jiroukaja/2843352 to your computer and use it in GitHub Desktop.
clozureCL導入
(load "quicklisp.lisp")
(quicklisp-quickstart:install :path ".quicklisp/")
(ql:add-to-init-file)
(ql:quickload :swank)
set nocompatible " be iMproved
filetype plugin indent off " required!
if has('vim_starting')
set runtimepath+=~/.vim/bundle/neobundle.vim
call neobundle#rc(expand('~/.vim/bundle/'))
endif
" originalrepos on github
NeoBundle 'Shougo/neobundle.vim'
NeoBundle 'Shougo/vimproc'
NeoBundle 'Shougo/vimshell'
NeoBundle 'Shougo/unite.vim'
NeoBundle 'Shougo/neocomplcache'
NeoBundle 'Shougo/neocomplcache-snippets-complete'
NeoBundle 'https://bitbucket.org/kovisoft/slimv'
filetype plugin indent on " required!
filetype indent on
let g:neocomplcache_enable_at_startup = 1
let g:vimshell_editor_command = '/Applications/MacVim.app/Contents/MacOS/Vim --servername=VIM --remote-tab-wait-silent'
let g:slimv_lisp = '/usr/local/bin/ccl64'
let g:slimv_impl = 'clozure'
let g:slimv_preferred = 'clozure'
let g:slimv_swank_cmd = '!osascript -e "tell application \"Terminal\" to do script \"ccl64 --load ~/.vim/bundle/slimv/slime/start-swank.lisp\""'
nnoremap <silent> vs :VimShell<CR>
inoremap <C-w><C-w> <ESC><C-w><C-w>
inoremap <C-w> <Nop>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment