25dbbd1e5a
Conda layer needed some additions to be spacemacs conform. In detail I did: * Add missing features block and TOC declaration in README * Change bindings to extent the existing python bindings rather than adding new general bindings. * Make conda layer require python layer
33 lines
921 B
EmacsLisp
33 lines
921 B
EmacsLisp
;;; packages.el --- Conda Layer packages File for Spacemacs
|
|
;;
|
|
;; Copyright (C) 2012-2019 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Zach Pearson <zach@zjp.codes>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;;; License: GPLv3
|
|
|
|
(setq conda-packages
|
|
'(
|
|
conda
|
|
))
|
|
|
|
(defun conda/init-conda ()
|
|
(use-package conda
|
|
:defer t
|
|
:commands (conda-env-list
|
|
conda-env-activate
|
|
conda-env-deactivate
|
|
conda-env-autoactivate-mode
|
|
conda-env-activate-for-buffer)
|
|
:init
|
|
(progn
|
|
(spacemacs/declare-prefix-for-mode 'python-mode "mn" "anaconda")
|
|
(spacemacs/set-leader-keys-for-major-mode 'python-mode
|
|
"nl" 'conda-env-list
|
|
"na" 'conda-env-activate
|
|
"nd" 'conda-env-deactivate
|
|
"nA" 'conda-env-autoactivate-mode
|
|
"nb" 'conda-env-activate-for-buffer))))
|