Changeset 00941c1 in dotfiles


Ignore:
Timestamp:
Jan 31, 2020, 2:35:33 AM (5 years ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
bc23ed7
Parents:
480de5f
Message:

Add emacs-geiser

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • emacs/.emacs

    r480de5f r00941c1  
    4343(org-babel-load-file "~/.emacs-config.org")
    4444(delete-file "~/.emacs-config.el")
    45 (custom-set-variables
    46  ;; custom-set-variables was added by Custom.
    47  ;; If you edit it by hand, you could mess it up, so be careful.
    48  ;; Your init file should contain only one such instance.
    49  ;; If there is more than one, they won't work right.
    50  '(package-selected-packages
    51    (quote
    52     (pos-tip yasnippet-snippets vue-mode use-package swiper org-mime org-journal mwim mood-line magit-gitflow keycast js2-mode intero git-gutter+ flymd flycheck-lilypond epresent company-anaconda column-enforce-mode color-theme-sanityinc-tomorrow browse-kill-ring auto-package-update aggressive-indent))))
    53 (custom-set-faces
    54  ;; custom-set-faces was added by Custom.
    55  ;; If you edit it by hand, you could mess it up, so be careful.
    56  ;; Your init file should contain only one such instance.
    57  ;; If there is more than one, they won't work right.
    58  )
  • emacs/.emacs-config.org

    r480de5f r00941c1  
    228228#+END_SRC
    229229
     230** Hydra
     231#+BEGIN_SRC emacs-lisp
     232(use-package hydra)
     233#+END_SRC
    230234** Ширина строки -- 80 символов
    231235#+BEGIN_SRC emacs-lisp
     
    309313;;; Emacs Lisp string manipulation
    310314(use-package s)
     315#+END_SRC
     316*** REPL Scheme
     317#+BEGIN_SRC emacs-lisp
     318(use-package emacs-geiser
     319  :after yasnippet
     320  :config
     321  (add-to-list 'geiser-guile-load-path "~/github/guix")
     322  (add-to-list 'yas-snippet-dirs "~/github/guix/etc/snippets"))
    311323#+END_SRC
    312324** Python
  • guix/config.scm

    r480de5f r00941c1  
    124124         "emacs-ledger-mode"
    125125         "emacs-diminish"
    126          ;;"emacs-smooth-scrolling")))
     126         ;;"emacs-smooth-scrolling"
     127         "emacs-so-long"
     128         "emacs-hydra"
     129         "emacs-geiser")))
    127130
    128131(operating-system
Note: See TracChangeset for help on using the changeset viewer.