;;; sample startup file
;;; A semi-colon comments out everything from the first semicolon to the
;;; end of the line, unless the semicolon is within a string.

;; Set the load path, the list of directories in which Emacs searches
;; for Emacs-Lisp files.  Here, you should only prepend to the existing
;; load-path; the existing value should not be ignored:

;; Example:
;(setq load-path (cons "~/emacs/lisp" load-path))	; This prepends
							; "~/emacs/lisp" to 
							; the existing
							; load-path.

;; Prepend yet another directory.  You can prepend as many directories
;; as you wish:
;(setq load-path (cons "/another/directory" load-path))
;; Just duplicate the above line for each directory that you want to
;; prepend (but don't forget to remove the comment character at the
;; beginning of a line).

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(defun after-term-setup ()
  "Function that is executed after the terminal config file."
  ;; Make "ESC space" set the mark:
  (global-set-key "\M- " 'set-mark-command)
  )

(setq term-setup-hook 'after-term-setup)
