commit 06e838f0685c89b66c7b892755d90277934de226
parent ce8f5fd0cb8c31d2757deb83cfd8b0896f732038
Author: Yuval Langer <yuval.langer@gmail.com>
Date: Tue, 8 Aug 2017 14:54:59 +0300
Add pipenv-virtualenvwrapper interoperation and emacs undo-tree mode.
Diffstat:
2 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/dotfiles.org b/dotfiles.org
@@ -231,6 +231,9 @@ You might find mirrors in the following addresses:
#export PS1='$(task +in +PENDING count)i$(task count)t '$PS1
if command -v find_pycompletion.sh>/dev/null; then source `find_pycompletion.sh`; fi
+ # For pipenv.
+ export WORKON_HOME="$HOME/.virtualenvs"
+
#export PYTHONPATH
export GOPATH
export PATH
diff --git a/emacs/myinit.org b/emacs/myinit.org
@@ -58,6 +58,13 @@
)
#+END_SRC
+** undo-tree
+
+#+BEGIN_SRC emacs-lisp
+ (req-package undo-tree
+ :loader elpa
+ )
+#+END_SRC
** ede-mode
#+BEGIN_SRC emacs-lisp
@@ -422,6 +429,7 @@ Org bullets makes things look pretty.
#+BEGIN_SRC emacs-lisp
(req-package python-x
+ :loader :elpa
:config
(python-x-setup))
#+END_SRC