some more simplifications
This commit is contained in:
@@ -60,9 +60,8 @@
|
|||||||
|
|
||||||
(use-package pdf-tools
|
(use-package pdf-tools
|
||||||
:config
|
:config
|
||||||
(progn
|
(pdf-tools-install)
|
||||||
(pdf-tools-install)
|
(setq pdf-view-midnight-colors '("#DCDCCC" . "#3F3F3F")))
|
||||||
(setq pdf-view-midnight-colors '("#DCDCCC" . "#3F3F3F"))))
|
|
||||||
|
|
||||||
(use-package saveplace-pdf-view)
|
(use-package saveplace-pdf-view)
|
||||||
|
|
||||||
@@ -118,7 +117,6 @@
|
|||||||
|
|
||||||
(use-package tomlparse)
|
(use-package tomlparse)
|
||||||
|
|
||||||
;; TODO I'm only using demand so <f3> is set from the start
|
|
||||||
(use-package treemacs
|
(use-package treemacs
|
||||||
:demand t
|
:demand t
|
||||||
:bind ("<f3>" . treemacs))
|
:bind ("<f3>" . treemacs))
|
||||||
@@ -131,7 +129,8 @@
|
|||||||
;; Common Lisp
|
;; Common Lisp
|
||||||
(use-package slime
|
(use-package slime
|
||||||
:config
|
:config
|
||||||
(load "~/.emacs.d/elisp/slime-setup.el"))
|
(slime-setup '(slime-fancy slime-quicklisp slime-asdf slime-mrepl))
|
||||||
|
(setq inferior-lisp-program "sbcl"))
|
||||||
|
|
||||||
(use-package paredit
|
(use-package paredit
|
||||||
:hook ((lisp-mode emacs-lisp-mode) . paredit-mode))
|
:hook ((lisp-mode emacs-lisp-mode) . paredit-mode))
|
||||||
@@ -141,8 +140,12 @@
|
|||||||
|
|
||||||
;; Rust
|
;; Rust
|
||||||
(use-package rust-mode
|
(use-package rust-mode
|
||||||
|
:hook ((rust-mode . cargo-minor-mode)
|
||||||
|
(rust-mode . racer-mode)
|
||||||
|
(racer-mode . eldoc-mode))
|
||||||
:config
|
:config
|
||||||
(load "~/.emacs.d/elisp/rust-setup.el"))
|
(keymap-set rust-mode-map "TAB" #'company-indent-or-complete-common)
|
||||||
|
(setq company-tooltip-align-annotations t))
|
||||||
|
|
||||||
;; Haskell
|
;; Haskell
|
||||||
(use-package haskell-mode)
|
(use-package haskell-mode)
|
||||||
|
|||||||
@@ -1,7 +1,3 @@
|
|||||||
;;;; slime setup
|
|
||||||
(slime-setup '(slime-fancy slime-quicklisp slime-asdf slime-mrepl))
|
|
||||||
(setq inferior-lisp-program "sbcl")
|
|
||||||
|
|
||||||
;; ;;; use my local copy of the Common Lisp HyperSpec
|
;; ;;; use my local copy of the Common Lisp HyperSpec
|
||||||
;; (load "~/clhs-use-local.el" t)
|
;; (load "~/clhs-use-local.el" t)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user