dotspacemacs-configuration-layers '( ;; ---------------------------------------------------------------- ;; Example of useful layers you may want to use right away. ;; Uncomment some layer names and press `SPC f e R' (Vim style) or ;; `M-m f e R' (Emacs style) to install them. ;; ---------------------------------------------------------------- helm (python :variables python-test-runner 'pytest python-fill-column 79 ) (auto-completion :variables auto-completion-enable-sort-by-usage t auto-completion-enable-snippets-in-popup t ) emacs-lisp git markdown neotree emoji syntax-checking version-control )
(defun dotspacemacs/user-config () "Configuration for user code: This function is called at the very end of Spacemacs startup, after layer configuration. Put your configuration code here, except for variables that should be set before packages are loaded." (setq neo-theme 'icons) (setq importmagic-python-interpreter "ipython") (setq python-shell-interpreter "ipython" python-shell-interpreter-args "--simple-prompt -i") )
;; Do not write anything past this comment. This is where Emacs will ;; auto-generate custom variable definitions. (setq custom-file (expand-file-name"custom.el" dotspacemacs-directory)) (load custom-file 'no-error 'no-message) (defun dotspacemacs/emacs-custom-settings () "Emacs custom settings. This is an auto-generated function, do not modify its content directly, use Emacs customize menu instead. This function is called at the very end of Spacemacs initialization." )