Created
January 17, 2018 18:39
-
-
Save asimpson/0b78834a3b24ab3e9d2d1fbaf264be9e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; -*- lexical-binding: t; -*- | |
(require 'package) | |
(add-to-list 'package-archives | |
'("melpa-stable" . "https://stable.melpa.org/packages/") t) | |
(package-initialize) | |
(tool-bar-mode -1) | |
(menu-bar-mode -1) | |
(show-paren-mode) | |
(scroll-bar-mode -1) | |
(require 'magit) | |
(eval-after-load 'magit (progn | |
;; (setq auto-revert-buffer-list-filter nil);;'magit-auto-revert-repository-buffers-p) | |
(put 'magit-clean 'disabled nil) | |
(add-hook 'magit-status-sections-hook 'magit-insert-worktrees) | |
(magit-status))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment