summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2021-05-03 09:31:54 -0400
committerDavid Thompson <dthompson2@worcester.edu>2021-05-03 09:31:54 -0400
commit380ff488d3b09de18526ec3e51e4c0dee75a2f7a (patch)
treeca56bb5680c41c99b517edb3a8b6921f4d96ba59
parentb31da41c150101bc948f2884ad7f495bc9422415 (diff)
Update Emacs config.
-rw-r--r--dotfiles/.emacs.d/init.el10
1 files changed, 1 insertions, 9 deletions
diff --git a/dotfiles/.emacs.d/init.el b/dotfiles/.emacs.d/init.el
index 804e25f..e504d96 100644
--- a/dotfiles/.emacs.d/init.el
+++ b/dotfiles/.emacs.d/init.el
@@ -42,10 +42,6 @@
;;; Look and Feel
;;;
-(defun font-exists-p (font)
- "Return 't' if FONT exists."
- (not (null (x-list-fonts font))))
-
;; Use Inconsolata font.
(add-to-list 'default-frame-alist '(font . "Inconsolata-12"))
@@ -351,9 +347,6 @@ indentation."
(add-to-list 'auto-mode-alist '("Rakefile$" . ruby-mode))
(add-to-list 'auto-mode-alist '("Gemfile$" . ruby-mode))
-(use-package ruby-test-mode
- :hook ruby-mode)
-
;;;
;;; SQL
@@ -410,7 +403,7 @@ indentation."
(erc-kill-server-buffer-on-quit t)
(erc-server-coding-system '(utf-8 . utf-8))
(erc-autojoin-channels-alist
- '(("freenode.net" "#guile" "#guix" "#lispgames")))
+ '(("freenode.net" "#gnuassembly" "#guile" "#guix" "#lispgames")))
;; Don't open channel buffers in place of the current
;; buffer because that drives me fucking crazy.
(erc-join-buffer 'bury)
@@ -458,7 +451,6 @@ indentation."
;;;
(global-set-key (kbd "RET") 'newline-and-indent)
-(global-set-key (kbd "C-c p") 'package-list-packages)
(global-set-key (kbd "C-c C-f") 'ff-find-other-file)
(global-set-key (kbd "M-%") 'query-replace-regexp)
;; No more minimizing Emacs by accident.