mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 02:30:42 -08:00
31 lines
1.1 KiB
Text
Vendored
31 lines
1.1 KiB
Text
Vendored
(in-package :clog-tools)
|
|
|
|
;; Open panels and files in new browser tabs by default
|
|
(setf *open-external* nil)
|
|
;; Open files in browser popups instead of tabs if browser allows
|
|
(setf *open-external-in-popup* nil)
|
|
;; Open panel editors in browser popus instead of tabs if browser allows
|
|
(setf *open-external-panels-in-popup* nil)
|
|
;; Open panels as popups by default
|
|
(setf *open-panels-as-popups* nil)
|
|
;; Use emacs instead of the source-editor when openning external
|
|
(setf *open-external-with-emacs* nil)
|
|
;; Best Light Theme for Lisp
|
|
(setf *editor-theme* "ace/theme/iplastic")
|
|
;; Best Dark Theme for Lisp
|
|
;;(setf *editor-theme* "ace/theme/terminal")
|
|
(setf *editor-mode* "ace/mode/lisp")
|
|
;;(setf *editor-keybinding* "ace/keyboard/emacs")
|
|
(setf *editor-keybinding* "ace/keyboard/ace")
|
|
(setf *editor-tab-size* 2)
|
|
;; See https://github.com/ajaxorg/ace/wiki/Configuring-Ace
|
|
(setf *editor-renderer-options*
|
|
"fontSize : 14,
|
|
showInvisibles : false,
|
|
displayIndentGuides : true,
|
|
printMarginColumn : 80,
|
|
showPrintMargin : true,
|
|
showLineNumbers : true,
|
|
showGutter : true,
|
|
enableBasicAutocompletion: true,
|
|
enableLiveAutocompletion : true")
|