Created
April 9, 2014 05:51
-
-
Save kurogelee/10229736 to your computer and use it in GitHub Desktop.
LightTableのビヘイビア設定メモ ref: http://qiita.com/kurogelee/items/d15c65906c0cd6fc78ac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{:+ { | |
;; The app tag is kind of like global scope. You assign behaviors that affect | |
;; all of Light Table here | |
:app [(:lt.objs.style/set-skin "dark") | |
:lt.objs.sidebar.workspace/workspace.open-on-start | |
:lt.objs.intro/show-new-file] | |
;; The editor tag is applied to all editors | |
:editor [(:lt.objs.style/set-theme "rabbit-house-dark") | |
:lt.objs.editor/line-numbers | |
:lt.objs.editor/wrap | |
:lt.objs.editor/highlight-current-line | |
:lt.objs.editor.file/remove-trailing-whitespace | |
(:lt.objs.console/set-console-limit 1000) | |
] | |
;; Here we can add behaviors to just clojure editors | |
:editor.clojure [(:lt.objs.langs.clj/print-length 1000)]} | |
;; You can use the subtract key to remove behavior that may get added by | |
;; another diff | |
:- {:app []}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment