Changeset accb3c9 in dotfiles


Ignore:
Timestamp:
Dec 20, 2019, 7:11:27 PM (5 years ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
b97111c
Parents:
5fc5c66
Message:

Add lilypond

File:
1 edited

Legend:

Unmodified
Added
Removed
  • emacs/.emacs

    r5fc5c66 raccb3c9  
    4949
    5050(use-package use-package-ensure-system-package :ensure)
     51
     52(add-to-list 'load-path "~/.guix-profile/share/emacs/site-lisp/")
    5153
    5254;;;; VISUALS
     
    149151  :config (setq magit-refresh-status-buffer nil))
    150152
    151 ;;; Magit' github integration
    152 (use-package magithub
     153;;; Magit forge (magit integration with git hostings)
     154(use-package forge
    153155  :after magit)
    154156
     
    349351;;;; MISC
    350352
     353;;; Show last key and command in modeline
     354(use-package keycast
     355  :config (keycast-mode))
     356
    351357;;; IRC
    352358(use-package erc
     
    613619(use-package org-journal)
    614620
    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.