I tried to override it by putting (:lt.objs.editor/tab-settings false 2 2)
in the editor
section of my user.behaviors, but it doesn't change anything. Everytime I press enter within for example <head>
tag of my html file, I get 4 spaces indent. I've been googling it for about half an hour now. Do you know what am I doing wrong?
I'm on the OS X version. Here's my whole user.behaviors:
{:+ {
;; 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")]
;; The editor tag is applied to all editors
:editor [:lt.objs.editor/no-wrap
(:lt.objs.style/set-theme "default")
(:lt.plugins.vim/activate-vim)
(:lt.objs.editor/tab-settings false 2 2)]
;; Here we can add behaviors to just clojure editors
:editor.clojure [(:lt.plugins.clojure/print-length 1000)]}
;; You can use the subtract key to remove behavior that may get added by
;; another diff
:- {:app []}}