annotate .emacs @ 526:852565046ed0 default tip

zsh: fidget with screen/tmux message This should speed things up very slightly by avoiding some `grep` action in the common case of no detached screens/tmuxes.
author Augie Fackler <raf@durin42.com>
date Mon, 14 Nov 2022 11:02:35 -0500
parents 6e5260ca85f2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
c30d68fbd368 Initial import from svn.
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
1 ;; Augie Fackler's .emacs file
c30d68fbd368 Initial import from svn.
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
2 ; Places I've stolen from:
c30d68fbd368 Initial import from svn.
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
3 ; Karl Fogel: http://svn.red-bean.com/repos/kfogel/trunk
155
8b0932adcaf1 emacs: mark the location of one of my sources
Augie Fackler <durin42@gmail.com>
parents: 127
diff changeset
4 ; Dave Anderson: https://ssl.natulte.net/hg/dotfiles/
98
8aa70b521063 Jump-to-function trick with IDO.
Augie Fackler <durin42@gmail.com>
parents: 77
diff changeset
5 ; Emacs Starter Kit: http://github.com/technomancy/emacs-starter-kit
0
c30d68fbd368 Initial import from svn.
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
6
c30d68fbd368 Initial import from svn.
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
7 ; Start the server so that emacsclient will work
421
9a2541ec4d4d emacs: call package-initialize in .emacs
Augie Fackler <raf@durin42.com>
parents: 358
diff changeset
8
9a2541ec4d4d emacs: call package-initialize in .emacs
Augie Fackler <raf@durin42.com>
parents: 358
diff changeset
9 ;; Added by Package.el. This must come before configurations of
9a2541ec4d4d emacs: call package-initialize in .emacs
Augie Fackler <raf@durin42.com>
parents: 358
diff changeset
10 ;; installed packages. Don't delete this line. If you don't want it,
9a2541ec4d4d emacs: call package-initialize in .emacs
Augie Fackler <raf@durin42.com>
parents: 358
diff changeset
11 ;; just comment it out by adding a semicolon to the start of the line.
9a2541ec4d4d emacs: call package-initialize in .emacs
Augie Fackler <raf@durin42.com>
parents: 358
diff changeset
12 ;; You may delete these explanatory comments.
9a2541ec4d4d emacs: call package-initialize in .emacs
Augie Fackler <raf@durin42.com>
parents: 358
diff changeset
13 (package-initialize)
9a2541ec4d4d emacs: call package-initialize in .emacs
Augie Fackler <raf@durin42.com>
parents: 358
diff changeset
14
0
c30d68fbd368 Initial import from svn.
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
15 (server-start)
c30d68fbd368 Initial import from svn.
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
16
358
08af9e123baa emacs: load customize file earlier so it can matter for things like smart-modeline
Augie Fackler <raf@durin42.com>
parents: 355
diff changeset
17 (setq custom-file "~/.elisp/settings/01.custom.el")
355
7edfa8d22584 emacs: move customize droppings to a dedicated file
Augie Fackler <raf@durin42.com>
parents: 214
diff changeset
18
77
45d7441d0cf2 Modularize .emacs
Augie Fackler <durin42@gmail.com>
parents: 76
diff changeset
19 (let ((settings-files (concat (getenv "HOME") "/.elisp/settings")))
460
6e5260ca85f2 emacs: remove pointless quote
Augie Fackler <raf@durin42.com>
parents: 421
diff changeset
20 (mapc (lambda (p) (load (concat settings-files "/" p)))
201
b80bed8c7c39 emacs: stop loading temp. files when walking settings
Augie Fackler <durin42@gmail.com>
parents: 155
diff changeset
21 (directory-files settings-files nil "^[0-9].*el$")))
74
fd369b708cbe Better way of altering load-path, add support for local-to-machine emacs configs.
Augie Fackler <durin42@gmail.com>
parents: 65
diff changeset
22
77
45d7441d0cf2 Modularize .emacs
Augie Fackler <durin42@gmail.com>
parents: 76
diff changeset
23 (if (file-regular-p (expand-file-name (concat (getenv "HOME")
45d7441d0cf2 Modularize .emacs
Augie Fackler <durin42@gmail.com>
parents: 76
diff changeset
24 "/.emacs-machine.el")))
74
fd369b708cbe Better way of altering load-path, add support for local-to-machine emacs configs.
Augie Fackler <durin42@gmail.com>
parents: 65
diff changeset
25 (load (expand-file-name "~/.emacs-machine.el")))