diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2017-01-02 13:43:05 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2017-01-02 13:43:05 -0800 |
commit | ad053a876bc5c9594157398f8ca97f600eab6822 (patch) | |
tree | f4d5338474e63be6635d7b57beb7a525fe02cde9 | |
parent | [tmux] Simplify by removing a few things I don't use (diff) | |
download | emacs.d-ad053a876bc5c9594157398f8ca97f600eab6822.tar.gz |
[emacs] Slightly bigger font and no bell.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/lib/settings.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/emacs.d/lib/settings.el b/emacs.d/lib/settings.el index 3091298..65c39d1 100644 --- a/emacs.d/lib/settings.el +++ b/emacs.d/lib/settings.el @@ -89,6 +89,10 @@ (setq-default cursor-type 'bar) ;; Set default font. -(set-face-attribute 'default nil :height 130 :weight 'normal :width 'normal) +(set-face-attribute 'default nil :height 150 :weight 'normal :width 'normal) + +;; no bell +(setq visible-bell nil) +(setq ring-bell-function 'ignore) (provide 'settings) |