Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

patch: add bind-key #1

Open
ghost opened this issue Nov 26, 2017 · 0 comments
Open

patch: add bind-key #1

ghost opened this issue Nov 26, 2017 · 0 comments

Comments

@ghost
Copy link

ghost commented Nov 26, 2017

Hello gilbertw1,
thanks for sharing this code!
I added bind-key to enable "(use-package org ... :bind (("\C-cl" . org-store-link) ... ) ... )"
Feel free to recycle this (I'm NOT lisp literate, there are probably better ways).
Erich

@@ -157,83 +281,408 @@
       (package-refresh-contents)
       (package-install 'use-package))
     (require 'use-package)
-    (setq use-package-always-ensure t))
+    (unless (package-installed-p 'bind-key)
+      (package-refresh-contents)
+      (package-install 'bind-key))
+    (require 'bind-key)
+    (setq use-package-always-ensure t)
+    (setq use-package-verbose t))
 #+END_SRC
 
 
 ** Packages
 
-*** Evil
-Install, automatically load, and enable evil. It's like vim, but better!
+
+*** bind-key
 
 #+BEGIN_SRC emacs-lisp
-(use-package evil
-  :demand t
-  :config
-  (evil-mode 1))
+(use-package bind-key
+  :demand t)
+    
 #+END_SRC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants