Changeset accb3c9 in dotfiles
- Timestamp:
- Dec 20, 2019, 7:11:27 PM (5 years ago)
- Branches:
- master
- Children:
- b97111c
- Parents:
- 5fc5c66
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
emacs/.emacs
r5fc5c66 raccb3c9 49 49 50 50 (use-package use-package-ensure-system-package :ensure) 51 52 (add-to-list 'load-path "~/.guix-profile/share/emacs/site-lisp/") 51 53 52 54 ;;;; VISUALS … … 149 151 :config (setq magit-refresh-status-buffer nil)) 150 152 151 ;;; Magit ' github integration152 (use-package magithub153 ;;; Magit forge (magit integration with git hostings) 154 (use-package forge 153 155 :after magit) 154 156 … … 349 351 ;;;; MISC 350 352 353 ;;; Show last key and command in modeline 354 (use-package keycast 355 :config (keycast-mode)) 356 351 357 ;;; IRC 352 358 (use-package erc … … 613 619 (use-package org-journal) 614 620 615 (add-to-list 'exec-path "~/.nodejs/bin/") 621 ;;; Lilypond 622 (use-package lilypond-mode 623 :ensure nil 624 :ensure-system-package lilypond 625 :config 626 (autoload 'LilyPond-mode "lilypond-mode") 627 (setq auto-mode-alist 628 (cons '("\\.ly$" . LilyPond-mode) auto-mode-alist)) 629 (add-hook 'LilyPond-mode-hook (lambda () (turn-on-font-lock)))) 630 631 ;;; Flycheck lilypond 632 (use-package flycheck-lilypond) 633 634 ;; (global-set-key [(control ?h)] 'delete-backward-char) 635 636 (use-package lilypond-mode 637 :ensure nil 638 :ensure-system-package node 639 :config 640 (add-to-list 'exec-path "~/.nodejs/bin/"))
Note:
See TracChangeset
for help on using the changeset viewer.