Changeset 26f22c5 in dotfiles


Ignore:
Timestamp:
Feb 10, 2020, 4:41:15 PM (5 years ago)
Author:
Mikhail Kirillov <w96k@…>
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)
Message:

Add emacs which-key

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • emacs/.emacs

    r1bb47a9 r26f22c5  
    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     (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-faces
    55  ;; 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  
    437437#+BEGIN_SRC elisp
    438438(use-package parinfer
     439  :after lispy
    439440  :bind
    440441  (("C-," . parinfer-toggle-mode))
     
    660661  scroll-preserve-screen-position 100)
    661662#+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
    662673** Системные пакеты
    663674*** Docker
     
    668679  :bind ("C-c d" . docker))
    669680#+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
    670692** Баг-трекеры
    671693*** Debbugs
  • guix/config.scm

    r1bb47a9 r26f22c5  
    135135         "emacs-slime-company"
    136136         "emacs-parinfer-mode"
    137          "emacs-lispy")))
     137         "emacs-lispy"
     138         "emacs-emms"
     139         "emacs-which-key")))
    138140
    139141(operating-system
Note: See TracChangeset for help on using the changeset viewer.