summaryrefslogtreecommitdiff
path: root/config/init-osx.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-05-26 14:00:34 -0700
committerFranck Cuny <franck@fcuny.net>2024-05-26 14:00:34 -0700
commit38593df6bb457fc3940fcef1d93976cd56b0a2d0 (patch)
tree58fbc11815b2fe7619d1234388877ebc0763afa6 /config/init-osx.el
parenti want the eglot buffer to debug stuff (diff)
downloademacs.d-38593df6bb457fc3940fcef1d93976cd56b0a2d0.tar.gz
massive cleanup
Diffstat (limited to '')
-rw-r--r--config/init-osx.el30
1 files changed, 0 insertions, 30 deletions
diff --git a/config/init-osx.el b/config/init-osx.el
deleted file mode 100644
index 175ffbd..0000000
--- a/config/init-osx.el
+++ /dev/null
@@ -1,30 +0,0 @@
-;;; init-osx.el --- configure osx -*- lexical-binding: t -*-
-;; Author: Franck Cuny <franck@fcuny.net>
-
-;;; Commentary:
-
-;; configure osx
-
-;;; Code:
-
-(when (memq window-system '(mac ns))
- (add-to-list 'default-frame-alist '(fullscreen . maximized))
- (add-to-list 'default-frame-alist '(ns-appearance . nil))
- (add-to-list 'default-frame-alist '(ns-transparent-titlebar . nil))
- (when (boundp 'ns-use-native-fullscreen)
- (setq ns-use-native-fullscreen nil))
- (when (boundp 'mac-allow-anti-aliasing)
- (setq mac-allow-anti-aliasing t)))
-
-(use-package exec-path-from-shell
- :ensure t
- :demand t
- :if (memq window-system '(mac ns))
- :config
- (exec-path-from-shell-initialize)
- :custom
- (exec-path-from-shell-variables '("ASPELL_CONF")))
-
-(provide 'init-osx)
-
-;;; init-osx.el ends here