projects
/
~bandali
/
configs
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[emacs/exec-path-from-shell] don’t check for vars being properly set
[~bandali/configs]
/
init.org
diff --git
a/init.org
b/init.org
index
684bbf1
..
c256b7f
100644
(file)
--- a/
init.org
+++ b/
init.org
@@
-347,7
+347,8
@@
in my shell.
(use-package exec-path-from-shell
:defer 1
:init
(use-package exec-path-from-shell
:defer 1
:init
- (setq exec-path-from-shell-check-startup-files nil)
+ (setq exec-path-from-shell-arguments nil
+ exec-path-from-shell-check-startup-files nil)
:config
(exec-path-from-shell-initialize)
;; while we're at it, let's fix access to our running ssh-agent
:config
(exec-path-from-shell-initialize)
;; while we're at it, let's fix access to our running ssh-agent
@@
-990,7
+991,6
@@
There's no way I could top that, so I won't attempt to.
#+begin_src emacs-lisp
(use-package counsel
#+begin_src emacs-lisp
(use-package counsel
- :defer 0.6
:after ivy
:bind (([remap execute-extended-command] . counsel-M-x)
([remap find-file] . counsel-find-file)
:after ivy
:bind (([remap execute-extended-command] . counsel-M-x)
([remap find-file] . counsel-find-file)
@@
-1237,6
+1237,7
@@
Highlight matching parens.
#+begin_src emacs-lisp
(use-feature paren
#+begin_src emacs-lisp
(use-feature paren
+ :demand
:config (show-paren-mode))
#+end_src
:config (show-paren-mode))
#+end_src