Skip to content

Commit

Permalink
Some changes suggested by Bob Willan.
Browse files Browse the repository at this point in the history
  • Loading branch information
technomancy committed Jul 10, 2010
1 parent d15b7ca commit b30f368
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 4 additions & 4 deletions init.el
Expand Up @@ -24,16 +24,16 @@

(add-to-list 'load-path dotfiles-dir)

(require 'package)
(package-initialize)
(require 'starter-kit-elpa)

(add-to-list 'load-path (concat dotfiles-dir "/elpa-to-submit"))

(setq autoload-file (concat dotfiles-dir "loaddefs.el"))
(setq package-user-dir (concat dotfiles-dir "elpa"))
(setq custom-file (concat dotfiles-dir "custom.el"))

(require 'package)
(package-initialize)
(require 'starter-kit-elpa)

;; These should be loaded on startup rather than autoloaded on demand
;; since they are likely to be used in every session

Expand Down
1 change: 1 addition & 0 deletions starter-kit-elpa.el
Expand Up @@ -9,6 +9,7 @@
'inf-ruby
'css-mode
'yaml-mode
'find-file-in-project
'magit
'gist)
"Libraries that should be installed by default.")
Expand Down
3 changes: 3 additions & 0 deletions starter-kit-misc.el
Expand Up @@ -34,6 +34,9 @@
xterm-mouse-mode t
save-place-file (concat dotfiles-dir "places"))

(add-to-list 'safe-local-variable-values '(lexical-binding . t))
(add-to-list 'safe-local-variable-values '(whitespace-line-column . 80))

;; Set this to whatever browser you use
;; (setq browse-url-browser-function 'browse-url-firefox)
;; (setq browse-url-browser-function 'browse-default-macosx-browser)
Expand Down

0 comments on commit b30f368

Please sign in to comment.