emacs not load (.emacs) configuration file
Posted
by
ant2009
on Super User
See other posts from Super User
or by ant2009
Published on 2009-10-26T06:05:40Z
Indexed on
2012/08/29
3:41 UTC
Read the original article
Hit count: 247
emacs
I am using emacs on ubuntu 9.04.
I have my emacs configuration file in ~/.emacs.d directory.
My emacs file is called .emacs
I have some basic configuration. However, everytime I start emacs it never loads my configuration and I have to keep doing it manually using i.e.
M-X Transient-mark-mode
My emacs file is listed below:
;; Emac customization file path
(add-to-list 'load-path "~/emacs.d")
;; Use font lock mode
(global-font-lock-mode t)
;; Highlight cursor line
(global-hl-line-mode t)
;; Highlight selected region
(transient-mark-mode t)
I want to add to this configuration instead of manually added entries.
Many thanks for any advice,
© Super User or respective owner