You can use:
(define-key evil-normal-state-map (kbd "RET") 'spacemacs/evil-insert-line-below)
to insert the line below and stay in the same position, or
(define-key evil-normal-state-map (kbd "RET") (lambda () (interactive) (call-interactively 'spacemacs/evil-insert-line-below) (evil-next-line)))
to insert a line below and go to a new line.
source share