Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 810 Bytes

README.md

File metadata and controls

24 lines (20 loc) · 810 Bytes

tanim-emacs: my own customizations

Hello World! Here I have a grab-bag of elisp files I need to get my emacs environment to look as nice as I want it to.

This repository should live in a ~/.xemacs directory. The easiest way to do this is to run the command,

git clone https://[email protected]/tanim_islam/tanim-emacs.git .xemacs

All in your home directory.

Second, you should have a ~/.emacs file, which should look like this.

;;; XEmacs backwards compatibility file
(setq user-init-file
      (expand-file-name "init.el"
			(expand-file-name ".xemacs" "~")))
(setq custom-file
      (expand-file-name "custom.el"
			(expand-file-name ".xemacs" "~")))

(load-file user-init-file)
(load-file custom-file)

Have fun and edit on!