gdritter repos dotfiles / 1d0dcfa
Some fixes for ikshvaku Getty Ritter 9 years ago
1 changed file(s) with 6 addition(s) and 1 deletion(s). Collapse all Expand all
1111
1212 (setq scheme-program-name "guile")
1313
14 (if (not (getenv "BIG"))
14 (if (and (display-graphic-p)
15 (not (getenv "BIG")))
1516 (progn
1617 (scroll-bar-mode 0)
1718 (tool-bar-mode 0)))
2324 (package-initialize)
2425 (add-to-list 'package-archives
2526 '("melpa" . "http://melpa.milkbox.net/packages/") t)
27
28 (unless (package-installed-p 'use-package)
29 (package-refresh-contents)
30 (package-install 'use-package))
2631 (require 'use-package)
2732
2833