Advertisement
theguild42

init.el

Feb 6th, 2021
1,568
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 1.20 KB | None | 0 0
  1. (setq inhibit-startup-message t)
  2.  
  3. (scroll-bar-mode -1)
  4. (tool-bar-mode -1)
  5. (tooltip-mode -1)
  6. (set-fringe-mode 5)
  7.  
  8. ;; Set up visual bell
  9. (setq visible-bell t)
  10.  
  11. (load-theme 'tango-dark)
  12.  
  13. ;; Intalize package sources
  14. (require 'package)
  15.  
  16. (setq package-archives '(("melpa" . "https://melpa.org/packages/")
  17.             ("org" . "https://orgmode.org/elpa/")
  18.             ("elpa" . "https://elpa.gnu.org/packages/")))
  19.  
  20. (package-initalize)
  21. (unless package-archive-contents
  22.   (package-refresh-contents))
  23.  
  24. ;; Initalize use-package on non-Linux platforms
  25. (unless (package-installed-p 'use-package)
  26.   (package-install 'use-package))
  27.  
  28. (require 'use-package)
  29. (setq use-package-always-ensure t)
  30.  
  31.  
  32. (custom-set-variables
  33.  ;; custom-set-variables was added by Custom.
  34.  ;; If you edit it by hand, you could mess it up, so be careful.
  35.  ;; Your init file should contain only one such instance.
  36.  ;; If there is more than one, they won't work right.
  37.  '(package-selected-packages '(use-package)))
  38. (custom-set-faces
  39.  ;; custom-set-faces was added by Custom.
  40.  ;; If you edit it by hand, you could mess it up, so be careful.
  41.  ;; Your init file should contain only one such instance.
  42.  ;; If there is more than one, they won't work right.
  43.  )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement