Skip to content

Instantly share code, notes, and snippets.

View mpcogito's full-sized avatar

Data Mike mpcogito

View GitHub Profile
@mpcogito
mpcogito / init.el
Last active February 6, 2021 15:19
Fix pipenv nesting issue
;; ~/.spacemacs.d/init.el
;; ...
;; IMPORTANT: Make sure python-pipenv-activate is nil, or modify the below code.
(defun dotspacemacs/user-config ()
;; ...
;; fix nested pipenv module problem
(advice-add 'pipenv--command :around #'mikemacs/my-setup-pipenv-default-directory)
;; ...
)