Adding more files for the first time

This commit is contained in:
Scott C. MacCallum 2022-03-28 17:23:53 -04:00
parent dfef606253
commit a5f7c2e5fa
1 changed files with 26 additions and 0 deletions

26
dotemacs Normal file
View File

@ -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")