Skip to content

Commit

Permalink
Moved magit configuration into init.el
Browse files Browse the repository at this point in the history
  • Loading branch information
zk committed Oct 31, 2010
1 parent 1dc23bf commit 19ce163
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion command-frequencies.el.log
Original file line number Diff line number Diff line change
@@ -1 +1 @@
((ido-complete-space . 1) (find-tag-regexp . 1) (kill-sexp . 1) (backward-kill-line . 27) (set-fill-column . 3) (yas/expand . 4) (ido-complete . 1) (rinari-find-controller . 1) (autopair-skip-close-maybe . 6) (autopair-insert-opening . 23) (autopair-backspace . 63) (autopair-insert-or-skip-quote . 7) ...)
((help-for-help . 1) (indent-or-expand . 3) (move-end-of-line . 2) (previous-line . 2) (end-of-buffer . 1) (anything-next-line . 2) (yank . 2) (move-beginning-of-line . 2) (kill-this-buffer . 2) (apropos-documentation . 2) (minibuffer-keyboard-quit . 3) (kill-region . 1) (backward-char . 3) (backward-word . 4) (forward-word . 5) (forward-char . 4) (isearch-exit . 1) (isearch-other-control-char . 2) (backward-paragraph . 18) (magit-refresh . 1) (previous-history-element . 1) (eval-defun . 3) (next-line . 6) (undo . 4) (forward-paragraph . 19) (isearch-abort . 5) (isearch-repeat-forward . 23) (beginning-of-buffer . 3) (isearch-other-meta-char . 2) (isearch-printing-char . 44) (isearch-forward-regexp . 7) (abort-recursive-edit . 1) (anything . 3) (ido-execute-command . 9) (autopair-newline . 22) (self-insert-command . 186) (ido-delete-backward-updir . 1) (ido-find-file . 2) (save-buffer . 10) (org-self-insert-command . 4) (autopair-insert-or-skip-quote . 8) (autopair-backspace . 83) (autopair-insert-opening . 25) (autopair-skip-close-maybe . 6) (rinari-find-controller . 1) (ido-complete . 2) (yas/expand . 4) (set-fill-column . 3) (backward-kill-line . 28) (kill-sexp . 2) (find-tag-regexp . 1) (ido-complete-space . 1))
3 changes: 3 additions & 0 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,9 @@
;; If there is more than one, they won't work right.
)

(custom-set-variables
'(magit-git-executable "/opt/local/bin/git"))

;; Clojure run test
(defun run-tests-for-namespace (ns)
)
Expand Down
2 changes: 1 addition & 1 deletion plugins/magit.el
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
:prefix "magit-"
:group 'tools)

(defcustom magit-git-executable "/opt/local/bin/git"
(defcustom magit-git-executable "git"
"The name of the Git executable."
:group 'magit
:type 'string)
Expand Down

0 comments on commit 19ce163

Please sign in to comment.