Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (setq inhibit-startup-message t)
- (scroll-bar-mode -1)
- (tool-bar-mode -1)
- (tooltip-mode -1)
- (set-fringe-mode 5)
- ;; Set up visual bell
- (setq visible-bell t)
- (load-theme 'tango-dark)
- ;; Intalize package sources
- (require 'package)
- (setq package-archives '(("melpa" . "https://melpa.org/packages/")
- ("org" . "https://orgmode.org/elpa/")
- ("elpa" . "https://elpa.gnu.org/packages/")))
- (package-initalize)
- (unless package-archive-contents
- (package-refresh-contents))
- ;; Initalize use-package on non-Linux platforms
- (unless (package-installed-p 'use-package)
- (package-install 'use-package))
- (require 'use-package)
- (setq use-package-always-ensure t)
- (custom-set-variables
- ;; custom-set-variables was added by Custom.
- ;; If you edit it by hand, you could mess it up, so be careful.
- ;; Your init file should contain only one such instance.
- ;; If there is more than one, they won't work right.
- '(package-selected-packages '(use-package)))
- (custom-set-faces
- ;; custom-set-faces was added by Custom.
- ;; If you edit it by hand, you could mess it up, so be careful.
- ;; Your init file should contain only one such instance.
- ;; If there is more than one, they won't work right.
- )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement