diff options
| author | Syndamia <kamen@syndamia.com> | 2022-12-03 14:56:58 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2022-12-03 14:56:58 +0200 |
| commit | c53f2b3de10cf55ff5e64b5daaca76586420ee79 (patch) | |
| tree | 00704928714a8450cdd74a24743e99b14b67ce04 | |
| parent | b33849761d68397b0faeb0351e3728bbb16d5604 (diff) | |
| download | dotfiles-c53f2b3de10cf55ff5e64b5daaca76586420ee79.tar dotfiles-c53f2b3de10cf55ff5e64b5daaca76586420ee79.tar.gz dotfiles-c53f2b3de10cf55ff5e64b5daaca76586420ee79.zip | |
[vimrc/CodeTerminal] Added lisp configuration and tabularized by column
| -rw-r--r-- | .vimrc | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -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 = { |
