;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
- '(minibuffer-prompt-properties '(read-only t cursor-intangible t face minibuffer-prompt)) ;; Stolen from Xah
- )
+ '(minibuffer-prompt-properties '(read-only t cursor-intangible t face minibuffer-prompt))
+ '(package-selected-packages
+ '(s openwith gnuplot-mode magit expand-region company use-package)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(mode-line ((t (:foreground "black" :background "gray"))))
- '(mode-line-inactive ((t (:foreground "black" :background "#cae0a6"))))
- )
+ '(mode-line-inactive ((t (:foreground "black" :background "#cae0a6")))))
;; -*- lexical-binding: t; -*-
-;; PACKAGES
(require 'package)
(setq package-archives
'(("elpa" . "https://elpa.gnu.org/packages/")
("melpa" . "https://melpa.org/packages/")))
(package-initialize)
+(unless (package-installed-p 'use-package)
+ (package-refresh-contents)
+ (package-install 'use-package))
+
(use-package company
:ensure t
:custom
(openwith-mode t))
(use-package s
- :ensure t)
+ :ensure t)
(use-package dash
- :ensure t)
+ :ensure t)
+
+(if (not (eq system-type 'windows-nt))
+ (use-package slime
+ :ensure t))