From a5f7c2e5fa056cfb8a87fb3f85931616718b0b9e Mon Sep 17 00:00:00 2001 From: "Scott C. MacCallum" Date: Mon, 28 Mar 2022 17:23:53 -0400 Subject: [PATCH] Adding more files for the first time --- dotemacs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 dotemacs diff --git a/dotemacs b/dotemacs new file mode 100644 index 0000000..e54296d --- /dev/null +++ b/dotemacs @@ -0,0 +1,26 @@ +;; Remove the menu bar +(menu-bar-mode -1) + +;; Remove the tool bar +(tool-bar-mode 0) + +;; Set font and size +(set-frame-font "mono-14") + +;; Change the background color to black +(add-to-list 'default-frame-alist '(background-color . "black")) + +;; Change the foreground color to green +(add-to-list 'default-frame-alist '(foreground-color . "green")) + +;; Open a local terminal +(ansi-term "/bin/bash") +(rename-bugger "term") + +;; Run bboard on SDF +(ansi-term "/home/scm/sdf/bboard.sh") +(rename-buffer "bboard") + +;; Run com on SDF +(ansi-term "/home/scm/sdf/com.sh") +(rename-buffer "com")