Changeset 26f22c5 in dotfiles
- Timestamp:
- Feb 10, 2020, 4:41:15 PM (5 years ago)
- Branches:
- master
- Children:
- e2de547
- Parents:
- 1bb47a9
- git-author:
- Mikhail Kirillov <w96k@…> (02/10/20 16:41:03)
- git-committer:
- Mikhail Kirillov <w96k@…> (02/10/20 16:41:15)
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
emacs/.emacs
r1bb47a9 r26f22c5 43 43 (org-babel-load-file "~/.emacs-config.org") 44 44 (delete-file "~/.emacs-config.el") 45 (custom-set-variables46 ;; 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-packages51 (quote52 (clj-refactor yasnippet-snippets vue-mode use-package swiper pos-tip 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 cider browse-kill-ring auto-package-update aggressive-indent)))53 '(send-mail-function (quote smtpmail-send-it)))54 (custom-set-faces55 ;; custom-set-faces was added by Custom.56 ;; If you edit it by hand, you could mess it up, so be careful.57 ;; Your init file should contain only one such instance.58 ;; If there is more than one, they won't work right.59 ) -
emacs/.emacs-config.org
r1bb47a9 r26f22c5 437 437 #+BEGIN_SRC elisp 438 438 (use-package parinfer 439 :after lispy 439 440 :bind 440 441 (("C-," . parinfer-toggle-mode)) … … 660 661 scroll-preserve-screen-position 100) 661 662 #+END_SRC 663 ** Which-key 664 #+BEGIN_SRC elisp 665 (use-package which-key 666 :config 667 (setq which-key-show-early-on-C-h t) 668 (setq which-key-side-window-location 'bottom) 669 (setq which-key-idle-delay 0.5) 670 (global-set-key (kbd "C-h C-k") 'which-key-show-major-mode) 671 (which-key-mode)) 672 #+END_SRC 662 673 ** Системные пакеты 663 674 *** Docker … … 668 679 :bind ("C-c d" . docker)) 669 680 #+END_SRC 681 ** Мультимедиа 682 *** EMMS 683 #+BEGIN_SRC elisp 684 (use-package emms 685 :config 686 (emms-all) 687 (emms-default-players) 688 (setq emms-source-file-default-directory (expand-file-name "~/Music")) 689 (setq emms-player-list '(emms-player-mpg321 emms-player-ogg123 690 emms-player-mplayer))) 691 #+END_SRC 670 692 ** Баг-трекеры 671 693 *** Debbugs -
guix/config.scm
r1bb47a9 r26f22c5 135 135 "emacs-slime-company" 136 136 "emacs-parinfer-mode" 137 "emacs-lispy"))) 137 "emacs-lispy" 138 "emacs-emms" 139 "emacs-which-key"))) 138 140 139 141 (operating-system
Note:
See TracChangeset
for help on using the changeset viewer.