Hash :
ed074884
Author :
Thomas de Grivel
Date :
2019-06-24T11:00:27
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
;; slime
(add-to-list 'load-path "~/common-lisp/slime/slime/")
(require 'slime-autoloads)
(add-to-list 'slime-contribs 'slime-fancy)
(setq inferior-lisp-program
"/usr/local/bin/sbcl")
(setq common-lisp-hyperspec-root
"/usr/share/doc/hyperspec/HyperSpec/")
(setq slime-net-coding-system
'utf-8-unix)
(custom-set-variables
;; custom-set-variables 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.
'(blink-cursor-mode nil)
'(c-basic-offset 8)
'(column-number-mode t)
'(ido-mode (quote both) nil (ido))
'(indent-tabs-mode nil)
'(inhibit-startup-screen t)
'(js-indent-level 2)
'(menu-bar-mode nil)
'(scroll-bar-mode nil)
'(show-paren-mode t)
'(tool-bar-mode nil))
(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.
'(default ((t (:inherit nil :stipple nil :background "white" :foreground "black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 95 :width normal :foundry "Adobe" :family "Courier"))))
'(fringe ((t (:background "white"))))
'(mode-line ((t (:background "gray" :foreground "black"))))
'(mode-line-inactive ((t (:inherit mode-line :background "grey" :foreground "gray30"))))
'(region ((t nil)))
'(window-divider ((t (:foreground "gray"))))
'(window-divider-first-pixel ((t (:foreground "blue"))))
'(window-divider-last-pixel ((t (:foreground "gray")))))