Load packages inline
This commit is contained in:
parent
2918f98d2a
commit
91b59031b0
1 changed files with 12 additions and 1 deletions
|
|
@ -70,6 +70,17 @@
|
||||||
(add-to-list 'load-path "c:/ruby/lib")
|
(add-to-list 'load-path "c:/ruby/lib")
|
||||||
(add-to-list 'load-path "c:/ruby/doc/ruby/ruby-1.8.6/misc")
|
(add-to-list 'load-path "c:/ruby/doc/ruby/ruby-1.8.6/misc")
|
||||||
|
|
||||||
|
;; =================================================================
|
||||||
|
;; Initialize Packages
|
||||||
|
;; =================================================================
|
||||||
|
;;
|
||||||
|
;; I appreciate that the package developers feel like the packages should be
|
||||||
|
;; initialized after this file, but, well.... I want to customize things here
|
||||||
|
;; and it's hard to do that without the relevant packages loaded.
|
||||||
|
;;
|
||||||
|
(package-initialize)
|
||||||
|
(setq package-enable-at-startup nil)
|
||||||
|
|
||||||
;; =================================================================
|
;; =================================================================
|
||||||
;; EMACS general look and feel
|
;; EMACS general look and feel
|
||||||
;; =================================================================
|
;; =================================================================
|
||||||
|
|
@ -545,7 +556,7 @@
|
||||||
;; autoload/add-to-list stuff. Good for it!
|
;; autoload/add-to-list stuff. Good for it!
|
||||||
;; =================================================================
|
;; =================================================================
|
||||||
(require 'go-mode-load)
|
(require 'go-mode-load)
|
||||||
(add-hook 'go-mode-hook 'auto-complete-mode)
|
(add-hook 'go-mode-hook 'auto-complete-mode)
|
||||||
|
|
||||||
;; Autocomplete is in the package manager, so we must defer configuration of
|
;; Autocomplete is in the package manager, so we must defer configuration of
|
||||||
;; autocomplete until after the package manager has done its thing. It's
|
;; autocomplete until after the package manager has done its thing. It's
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue