35 lines
817 B
EmacsLisp
35 lines
817 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/set-leader-keys
|
|
"ael" 'conda-env-list
|
|
"aea" 'conda-env-activate
|
|
"aed" 'conda-env-deactivate
|
|
"aeA" 'conda-env-autoactivate-mode
|
|
"aeb" 'conda-env-activate-for-buffer)
|
|
(spacemacs/declare-prefix "ae" "Python conda environments"))))
|