commit 07b64e11505f77aff1525116b02a7a2858421766 Author: Scott C. MacCallum Date: Sun Dec 4 21:08:18 2022 -0500 Add file diff --git a/dotemacs b/dotemacs new file mode 100644 index 0000000..e50c2b0 --- /dev/null +++ b/dotemacs @@ -0,0 +1,62 @@ +;; Disable menu bar +(menu-bar-mode -1) + +;; Diable startup message +(setq inhibit-startup-screen t) + +;; Automatically refresh a buffer when a change is detected +(global-auto-revert-mode t) + +;; Enable column number mode +(column-number-mode t) + +;; Display the time in 12 hour format +(display-time-mode t) + +;; Split the screen vertically +(split-window-vertically) + +;; Move the cursor to the bottom screen +(other-window 1) + +;; Make the bottom screen smaller +(shrink-window 8) + +;; Run ansi-term +(ansi-term "/bin/ksh") + +;; Rename the buffer to shell +(rename-buffer "shell1") + +;; Move the cursor to the top screen +(other-window 1) + +;; Run ansi-term +(ansi-term "/bin/ksh") + +;; Rename the buffer to shell2 +(rename-buffer "shell2") + +;; Run links +(ansi-term "/usr/local/bin/links") + +;; Rename the buffer to shell +(rename-buffer "web") + +;; Run bboard.ksh to load bboard on SDF +(ansi-term "/home/scm/sdf/bboard.ksh") + +;; Rename the buffer to bboard +(rename-buffer "bboard") + +;; Run com.ksh to load com on SDF +(ansi-term "/home/scm/sdf/com.ksh") + +;; Rename the buffer to com +(rename-buffer "com") + +;; Run irc.ksh to recover the IRC screen session on the cluster at SDF +(ansi-term "/home/scm/sdf/irc.ksh") + +;; Rename the buffer to com +(rename-buffer "irc")