summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.vimrc14
1 files changed, 8 insertions, 6 deletions
diff --git a/.vimrc b/.vimrc
index 52350f9..a79facb 100644
--- a/.vimrc
+++ b/.vimrc
@@ -237,7 +237,8 @@
" Program in which build actions are executed. If no value, build commands are executes as bash commands.
" This is only really useful in languages with interpreters
let g:codeenvs = {
- \ 'scheme': 'racket'
+ \ 'scheme' : 'racket',
+ \ 'lisp' : 'rlwrap sbcl --noinform',
\ }
" The following two dictionaries support certain substitutions:
@@ -246,11 +247,12 @@
" Building the current file only
let g:codebuildsingle = {
- \ 'scheme': '(enter! "%F")',
- \ 'cpp' : "g++ -g -pedantic '%F' && ./a.out",
- \ 'yacc' : 'bison -t -d %F',
- \ 'lex' : 'flex %F',
- \ 'haskell': 'runhaskell "%F"',
+ \ 'scheme' : '(enter! "%F")',
+ \ 'cpp' : "g++ -g -pedantic '%F' && ./a.out",
+ \ 'yacc' : 'bison -t -d %F',
+ \ 'lex' : 'flex %F',
+ \ 'haskell' : 'runhaskell "%F"',
+ \ 'lisp' : '(load "%F")',
\ }
" Building all files in the directory (and subdirectories) of the current file
let g:codebuildproject = {