summaryrefslogtreecommitdiff
path: root/emacs
diff options
context:
space:
mode:
Diffstat (limited to 'emacs')
-rw-r--r--emacs5
1 files changed, 4 insertions, 1 deletions
diff --git a/emacs b/emacs
index b6b3993..088d581 100644
--- a/emacs
+++ b/emacs
@@ -64,6 +64,7 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Turn on some modes automatically based on filename.
+(require 'go-mode)
(setq auto-mode-alist
'(("\\.mdwn\\'" . markdown-mode)
("\\.md\\'" . markdown-mode)
@@ -85,8 +86,10 @@
("\\.py\\'" . python-mode)
("\\.sh\\'" . shell-script-mode)
("\\.hs\\'" . haskell-mode)
+ ("\\.go\\'" . go-mode)
("\\.rs\\'" . rust-mode)
("\\.ledger\\'" . ledger-mode)
+ ("\\.tex\\'" . tex-mode)
("mutt-.*" . mail-mode)))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
@@ -169,4 +172,4 @@
;; 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 (:family "Hack" :foundry "SRC" :slant normal :weight normal :height 120 :width normal)))))
+ '(default ((t (:family "Inconsolata" :foundry "PfEd" :slant normal :weight bold :height 200 :width normal)))))