Skip to content

Instantly share code, notes, and snippets.

@MikeInnes
Last active November 8, 2015 05:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MikeInnes/9882389 to your computer and use it in GitHub Desktop.
Save MikeInnes/9882389 to your computer and use it in GitHub Desktop.
[
;; The app tag is kind of like global scope. You assign behaviors that affect
;; all of Light Table to it.
[:app :lt.objs.style/set-skin "dark"]
[:app :lt.objs.plugins/load-js "user_compiled.js"]
[:app :lt.objs.langs.julia/julia-path "C:\\Users\\Mike\\Julia 0.3.0-prerelease\\bin\\julia.exe"]
;; The editor tag is applied to all editors
[:editor :lt.objs.editor/no-wrap]
[:editor :lt.objs.style/set-theme "june"]
[:editor.julia :lt.objs.editor/tab-settings false 4 4]
;; Here we can add behaviors to just clojure editors
[:editor.clojure :lt.plugins.clojure/print-length 1000]
;; Behaviors specific to a user-defined object
[:user.hello :lt.plugins.user/on-close-destroy]
;; To subtract a behavior, prefix the name with '-' e.g.
;; [:app :-lt.objs.intro/show-intro]
]
@Omer80
Copy link

Omer80 commented Oct 29, 2015

Hello, I followed the instructions to install Juno on Light Table (http://junolab.org/docs/install-manual.html) and I got the following Error message after restarting Light Table:
WARNING: require is deprecated, use using or import instead
in depwarn at deprecated.jl:73
[inlined code] from deprecated.jl:694
in require at no file:0
in include at ./boot.jl:261
in include_from_node1 at ./loading.jl:304
in process_options at ./client.jl:308
in _start at ./client.jl:411
while loading /home/ohm/.config/LightTable/plugins/Julia/jl/init.jl, in expression starting on line 11
ERROR: LoadError: ArgumentError: Jewel not found in path
in require at ./loading.jl:233
[inlined code] from deprecated.jl:707
in require at no file:705
in include at ./boot.jl:261
in include_from_node1 at ./loading.jl:304
in process_options at ./client.jl:308
in _start at ./client.jl:411
while loading /home/ohm/.config/LightTable/plugins/Julia/jl/init.jl, in expression starting on line 27

@JoanneChew
Copy link

Same problem as Omer80

@benhzz
Copy link

benhzz commented Nov 8, 2015

I experienced the same error however I did not have the jewel.jl package loaded into julia. Go to troubleshooting subheading in the Installing & Upgrading section on the Juno page. From the julia executable I added the jewel package with the command Pkg.add("Jewel"). The box in the lower right still lights with the red counter but it does say that it is connected to juia

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment