From c53f2b3de10cf55ff5e64b5daaca76586420ee79 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Sat, 3 Dec 2022 14:56:58 +0200 Subject: [vimrc/CodeTerminal] Added lisp configuration and tabularized by column --- .vimrc | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to '.vimrc') 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 = { -- cgit v1.2.3