src.nth.io/

summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2025-10-02 11:45:27 -0500
committerLuke Hoersten <[email protected]>2025-10-02 11:45:27 -0500
commit31e53ed00b066234d31cbc98a337fc263009db0a (patch)
tree48c15c9cc4b36f92ebcf92a36e01067178210a1e /init.el
parent880bc08da7a003f3a483b9432e5927f018a06f7d (diff)
Added emacs server mode. Random fixes.HEADmain
Diffstat (limited to 'init.el')
-rw-r--r--init.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/init.el b/init.el
index 92bfb3b..f7482b2 100644
--- a/init.el
+++ b/init.el
@@ -54,6 +54,7 @@
ring-bell-function 'ignore
mac-command-modifier 'meta
ns-pop-up-frames nil
+ dired-use-ls-dired nil ; macOS ls doesn't support --dired
ispell-program-name "/usr/local/bin/aspell"))
@@ -128,6 +129,11 @@
(setq ibuffer-show-empty-filter-groups nil)
+;;; emacs server (for emacsclient)
+(require 'server)
+(unless (server-running-p)
+ (server-start))
+
;;; shell
(global-set-key (kbd "C-c s") 'eshell) ; start shell
(exec-path-from-shell-copy-env "PYTHONPATH")
@@ -193,10 +199,6 @@
(setq-default
show-paren-style 'expression
show-paren-delay 0)
-(set-face-attribute
- 'show-paren-match nil
- :background (face-background 'highlight)
- :foreground (face-foreground 'highlight))
(show-paren-mode t)