Skip to content

Instantly share code, notes, and snippets.

@Rainyan
Created March 12, 2019 20:34
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 Rainyan/e8a6055727bbd33d1690b8b0e6d72c80 to your computer and use it in GitHub Desktop.
Save Rainyan/e8a6055727bbd33d1690b8b0e6d72c80 to your computer and use it in GitHub Desktop.
;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
(package-initialize)
;; Get more packages from Melpa.
(require 'package)
(add-to-list 'package-archives
'("melpa-stable" . "https://stable.melpa.org/packages/") t)
;; Common Lisp / SLIME setup.
(setq inferior-lisp-program "/usr/bin/ccl")
(add-to-list 'load-path "/usr/share/emacs/site-lisp/slime/")
;; This is needed to make accented characters work
;; when using ibus input on a non-English keyboard.
;; See: https://www.emacswiki.org/emacs/DeadKeys
(require 'iso-transl)
(require 'slime-autoloads)
(slime-setup '(slime-fancy))
(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 (quote (magit))))
(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.
)
;; Custom binds
(global-set-key (kbd "C-x g") 'magit-status)
(global-set-key (kbd "C-x M-g") 'magit-dispatch-popup)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment