https://github.com/honmaple/emacs-maple-env
Isolate emacs dependency environment
https://github.com/honmaple/emacs-maple-env
Last synced: 5 months ago
JSON representation
Isolate emacs dependency environment
- Host: GitHub
- URL: https://github.com/honmaple/emacs-maple-env
- Owner: honmaple
- License: gpl-3.0
- Created: 2019-07-14T17:09:40.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-15T07:01:03.000Z (over 6 years ago)
- Last Synced: 2025-08-24T06:03:53.769Z (10 months ago)
- Language: Emacs Lisp
- Homepage:
- Size: 26.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
* maple-env
Isolate emacs dependency environment, idea from [[https://honmaple.me/articles/2018/07/%E5%A6%82%E4%BD%95%E4%BF%9D%E6%8C%81%E4%B8%80%E4%B8%AA%E5%B9%B2%E5%87%80%E7%9A%84%E7%B3%BB%E7%BB%9F.html][如何保持一个干净的系统]]
** How to use?
#+begin_src elisp
(use-package maple-env
:ensure nil
:hook (after-init . maple-env-mode)
:config
(setq maple-env:python-packages
'("yapf" "flake8" "isort" "python-language-server")
maple-env:golang-packages
'("github.com/rogpeppe/godef"
"github.com/golang/lint/golint"
"github.com/haya14busa/gopkgs/cmd/gopkgs"
"golang.org/x/tools/cmd/gopls")
maple-env:npm-packages
'("js-beautify"))
;; Need call manually when first start emacs
(maple-env:init))
#+end_src