9420f67c17
* Changed the load-dir variable in .emacs to d-dir (from emacs._d_). Using the same variable as emacs didn't seem like a good idea to me. * Moved autopair settings from 10-modules and 10-settings to 20-autopair * Removed the folding-mode comments from load files.
38 lines
1.8 KiB
EmacsLisp
38 lines
1.8 KiB
EmacsLisp
(add-to-list 'default-frame-alist '(font . "DejaVu Sans Mono-9"))
|
|
|
|
(setq inhibit-startup-message t) ; don't show welcome screen
|
|
(setq require-final-newline t) ; always append a newline to a
|
|
; file, if it doesn't have one
|
|
(setq font-lock-maximum-decoration t) ; denotes my interest in maximum
|
|
; possible fontification
|
|
(setq inhibit-default-init t) ; don't load default init
|
|
(setq-default indent-tabs-mode nil) ; spaces, no tabs
|
|
|
|
(setq backup-directory-alist `((".*" . ,temporary-file-directory)))
|
|
; backup file location
|
|
(setq auto-save-file-name-transforms `((".*" ,temporary-file-directory t)))
|
|
; autosave file location
|
|
|
|
(fset 'yes-or-no-p 'y-or-n-p) ; switch yes or no to y or n
|
|
|
|
(tool-bar-mode -1) ; no toolbar
|
|
(menu-bar-mode -1) ; no menubar
|
|
(scroll-bar-mode -1) ; no scrollbars
|
|
(line-number-mode -1) ; don't show line number in splitter
|
|
(global-linum-mode t) ; show them in the gutter
|
|
(column-number-mode t) ; show column number in splitter
|
|
(global-font-lock-mode t) ; show syntax highlighting, old
|
|
(show-paren-mode t) ; show matching parens
|
|
(delete-selection-mode t) ; delete selection upon typing
|
|
|
|
;; Byte-compile elisp files on save
|
|
(add-hook 'before-save-hook 'delete-trailing-whitespace)
|
|
(add-hook 'after-save-hook
|
|
(lambda ()
|
|
(let ((fname (buffer-file-name)))
|
|
(let ((suffix (file-name-extension fname)))
|
|
(if (string-equal suffix "el")
|
|
(byte-compile-file fname))))))
|
|
(add-hook 'emacs-startup-hook
|
|
(lambda ()
|
|
(fullscreen)))
|