Fork me on GitHub
#spacemacs
<
2018-01-08
>
jeff.terrell14:01:25

@sam16 - I'm no elisp hacker, but both of those approaches look reasonable to me. The second one is probably what I'd be inclined to, given that it's shorter. Do they not work? What errors do you see related to their use (presumably in the *Messages* buffer)? Can you evaluate those expressions (maybe changing setq-default to setq) after startup time to debug and iterate?

jeff.terrell15:01:01

@tomayerst - I don't sorry. I've gotten used to the evil-lisp-state (or whatever it is that ships with spacemacs under the SPC k menu) and haven't messed around with alternatives.

vuuvi16:01:22

seconding this ^ the spacemacs evil lisp state has proven to be the move effective tool for managing lisps in spacemacs for me.

vuuvi17:01:47

when writing in org mode, does anyone know of a way to get the text under a heading to be appropriately spaced over?

jeff.terrell17:01:22

If you start the top line with some space, a lot of times the rest of the lines will follow suit. E.g. with lists. But I don't know how to always do that.

jeff.terrell17:01:54

There was some way to indent everything visually without changing the file contents, but I'm forgetting how. Let me see if I can look that up.

jeff.terrell17:01:22

Ah, try this: M-x org-indent-mode. From here: https://orgmode.org/manual/Clean-view.html

ag18:01:23

@alexkeyes do this

(evil-define-key 'insert org-mode-map (kbd "RET") 'org-return-indent)
and now whenever you press RET while cursor at a heading, it will correctly indent the next line

vuuvi18:01:01

@ag Thanks! My org mode files will always look good