-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.emacs
More file actions
17 lines (14 loc) · 685 Bytes
/
.emacs
File metadata and controls
17 lines (14 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
;; Set option key to be the meta key
(setq mac-option-modifier 'meta)
(setq mac-escape-modifier nil)
;; So that emacs follows my links without prompt
(setq vc-follow-symlinks t)
;; The only proper tab formatting
(setq tab-width 4)
(setq indent-tabs-mode nil)
;; Make sure emacs knows the background is black
(add-to-list 'default-frame-alist '(background-color . "black"))
;; ## added by OPAM user-setup for emacs / base ## 56ab50dc8996d2bb95e7856a6eddb17b ## you can edit, but keep this line
(when (file-exists-p "~/.emacs.d/opam-user-setup.el")
(require 'opam-user-setup "~/.emacs.d/opam-user-setup.el"))
;; ## end of OPAM user-setup addition for emacs / base ## keep this line