Small changes:

- No bells at all. Shut up, emacs!
- Don't put temporary files everywhere. Just don't!
- Don't have scroll bars in new frames
This commit is contained in:
Vincent Ambo 2014-02-09 11:12:51 +01:00
parent bdbc18d285
commit 4fd813f0de
2 changed files with 11 additions and 3 deletions

View file

@ -7,6 +7,15 @@
(tool-bar-mode 0)
(scroll-bar-mode 0)
(defun disable-scroll-bar ()
(scroll-bar-mode 0))
; And remember to do it if I create a new frame.
(add-hook 'before-make-frame-hook 'disable-scroll-bar)
;; Don't make any noises, don't flash, just leave me alone
(setq ring-bell-function 'ignore)
;; Go away go away
(setq initial-scratch-message "")
@ -45,7 +54,7 @@
ediff-split-window-function 'split-window-horizontally
oddmuse-directory (concat user-emacs-directory "oddmuse")
save-place-file (concat user-emacs-directory "places")
backup-directory-alist `(("." . ,(concat user-emacs-directory "backups")))
backup-directory-alist `((,(concat user-emacs-directory "backups")))
diff-switches "-u")
;; Fix keys on Linux

View file

@ -13,7 +13,7 @@
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/"))
;; And load things!
;; (package-refresh-contents)
(package-refresh-contents)
(package-initialize)
(defvar my-pkgs
@ -112,4 +112,3 @@
;; Start server for emacsclient
;; (server-start)