aboutsummaryrefslogtreecommitdiffstats
path: root/modules/init-gui.el
diff options
context:
space:
mode:
Diffstat (limited to 'modules/init-gui.el')
-rw-r--r--modules/init-gui.el15
1 files changed, 11 insertions, 4 deletions
diff --git a/modules/init-gui.el b/modules/init-gui.el
index b8aa6ba..9857326 100644
--- a/modules/init-gui.el
+++ b/modules/init-gui.el
@@ -10,16 +10,23 @@
(setq use-dialog-box nil)
(setq inhibit-startup-screen t)
(setq inhibit-startup-echo-area-message t)
+(setq inhibit-startup-message t)
+(setq inhibit-hello-hook t)
+(setq inhibit-x-resources t)
(when (display-graphic-p)
(tool-bar-mode 0)
(scroll-bar-mode 0)
(menu-bar-mode 0))
-(setq make-backup-files nil) ; stop creating backup~ files
-(setq auto-save-default nil) ; stop creating #autosave# files
-(setq create-lockfiles nil) ; stop creating #create-lockfiles
-;; Suppressing ad-handle-definition Warnings in Emacs
+(setq make-backup-files nil)
+(setq auto-save-default nil)
+(setq create-lockfiles nil)
(setq ad-redefinition-action 'accept)
+;; Disable unnecessary features for speed
+(setq ring-bell-function 'ignore)
+(setq use-short-answers t)
+(setq confirm-kill-emacs nil)
+
;;------------------------------
;; Core settings | UTF-8 please
;;------------------------------