Skip to content

Commit

Permalink
Improve project opening.
Browse files Browse the repository at this point in the history
FossilOrigin-Name: 63da4f6ad681f456c0255a591c5d8f365e66d18c
  • Loading branch information
jaccarmac committed Sep 23, 2015
1 parent a008786 commit 1e5be8e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion dot-emacs-dot-d.org
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,10 @@ Now, for some code.
#+NAME: projectile
#+BEGIN_SRC emacs-lisp
(quse-package projectile
:init (projectile-global-mode))
:init (progn
(projectile-global-mode)
(setq projectile-switch-project-action
'projectile-dired)))
#+END_SRC

Git is the modern king of version control. The Magit project turns Emacs into
Expand Down
5 changes: 4 additions & 1 deletion init.el
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@
(quse-package password-store)

(quse-package projectile
:init (projectile-global-mode))
:init (progn
(projectile-global-mode)
(setq projectile-switch-project-action
'projectile-dired)))

(quse-package magit
:init (setq magit-last-seen-setup-instructions "1.4.0"))
Expand Down

0 comments on commit 1e5be8e

Please sign in to comment.