Skip to content

Instantly share code, notes, and snippets.

@asimpson
Created January 17, 2018 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asimpson/0b78834a3b24ab3e9d2d1fbaf264be9e to your computer and use it in GitHub Desktop.
Save asimpson/0b78834a3b24ab3e9d2d1fbaf264be9e to your computer and use it in GitHub Desktop.
;; -*- 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