diff options
| author | Luke Hoersten <[email protected]> | 2025-10-02 11:45:27 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2025-10-02 11:45:27 -0500 |
| commit | 31e53ed00b066234d31cbc98a337fc263009db0a (patch) | |
| tree | 48c15c9cc4b36f92ebcf92a36e01067178210a1e /init.el | |
| parent | 880bc08da7a003f3a483b9432e5927f018a06f7d (diff) | |
Diffstat (limited to 'init.el')
| -rw-r--r-- | init.el | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -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) |
