Scratchpad

If you are new to Scratchpad, and want full access as a Scratchpad editor, create an account!
If you already have an account, log in and have fun!!

READ MORE

Scratchpad
Advertisement
{{New wiki}} <!-- leave this line at the top of your page and add content about this topic below -->

;; Directory to put various el files.
(add-to-list 'load-path "~/.emacs.d/includes")


;; Show buffer name in window title
(setq frame-title-format "%b - emacs")

;; Show line and column position
(setq line-number-mode t)
(setq column-number-mode t)


;; disable splash screen
(setq inhibit-splash-screen t)

;; don't show text in scratch buffer
(setq initial-scratch-message nil)

;; don't crate backup~ files~
(setq make-backup-files nil)

;; fast-compile: use C-x C-m and don't prompt for "enter"
(global-set-key "\C-x\C-m" 'compile)
(setq compilation-read-command nil)

;; disable tool-bar

(if (fboundp 'tool-bar-mode) (tool-bar-mode -1))

;; disable menu-bar
;;(if (fboundp 'menu-bar-mode) (menu-bar-mode -1))


;;(require 'get-rfc)
;;(require 'cygwin-mount)
;;   (let* ((cygwin-root "d:/cygwin/")
;;           (cygwin-bin (concat cygwin-root "/bin")))
;;
;;      (setenv "HOME" (concat cygwin-root "/home/Matthias"))
;;      (setenv "PATH" (concat cygwin-bin ";" (getenv "PATH")))
;;     (setq exec-path (cons cygwin-bin exec-path)))
;;
;;    (setq shell-file-name "bash")
;;    (setq explicit-shell-file-name "bash")
Advertisement