I'm a Spacemacs user and I am trying SpaceVim for the first time.
There are a couple of settings I would like to port over. I use ",." to escape, with a delay of half a second, as shown in my Spacemacs config:
(setq-default evil-escape-key-sequence ",."
evil-escape-unordered-key-sequence "true"
evil-escape-delay 0.5)
I also switch to normal state after 15 seconds of idle time.
;; When in insert mode and idle, return to evil-normal-state
(run-with-idle-timer 15 t 'evil-normal-state)
How do I set the same settings in the SpaceVim.d/init.toml file?