-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit-preinit-mac.el
43 lines (30 loc) · 1.17 KB
/
init-preinit-mac.el
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
43
(set-face-attribute 'default nil :family "Monaco" :height 100)
(menu-bar-mode -1)
(setq
org-download-screenshot-method "screencapture -i %s"
org-download-edit-cmd "open -a Krita %s"
org-download-backend "wget \"%s\" -O \"%s\"")
;;; from config for mpb985
;; (progn
;; (set-face-attribute 'default nil :family "Monaco" :height 100)
;; (set-fontset-font t 'cyrillic "Monaco")
;; )
;; (setq mac-allow-anti-aliasing t)
;; (setq
;; mac-command-modifier 'super
;; mac-option-modifier 'meta
;; mac-control-modifier 'control
;; ns-function-modifier 'hyper ; make Fn key do Hyper
;; )
;; (setq browse-url-generic-program (executable-find "open")
;; browse-url-generic-args '("-a" "firefox"))
;; (menu-bar-mode t)
;; (setq trash-directory "~/.Trash")
;; ;;(load "/opt/local/share/emacs/site-lisp/ledger.el")
;; (defun open-file-with-os (filename) ; TODO: should be customized in
;; (shell-command (concat "open '" filename "'")))
;; (use-package exec-path-from-shell
;; :config (progn
;; ;; (setq exec-path-from-shell-variables '("PATH" "MANPATH" "WORKON_HOME"))
;; (exec-path-from-shell-initialize)))
;; (use-package reveal-in-osx-finder)