~aodag/dotfiles

4762177c951fda1abeda45fc68aa569432f59e1f — Atushi Odagiri 1 year, 3 months ago 368012c master
downgrade embark
1 files changed, 8 insertions(+), 5 deletions(-)

M config/emacs/config.org
M config/emacs/config.org => config/emacs/config.org +8 -5
@@ 22,7 22,8 @@
  (straight-use-package 'use-package)
#+END_SRC

* customize file
* Basic
** customize file

#+BEGIN_SRC elisp
  (setq custom-file


@@ 30,7 31,6 @@
  (when (file-exists-p custom-file)
    (load custom-file))
#+END_SRC
* Basic
** 要らないもの
- メニューバーいらない
- ツールバーいらない


@@ 126,7 126,8 @@
- 日本語入力でmozcを直接呼ぶ
- debian側で ~emacs-mozc-bin~ が必要
- wayland pgtkでime offの方法がわからない

  - ~GTK_IM_MODULE~ を切ってみても今度はwaylandのtext inputが動いてるっぽい?
  - 変換候補が出ないので不便
#+BEGIN_SRC elisp
  (use-package mozc
    :straight t


@@ 362,10 363,11 @@
    (add-hook 'marginalia-mode-hook #'all-the-icons-completion-marginalia-setup))
#+end_src
** embark
- straightで取得した最新版でエラーが出るのでgnu elpaのリリース版にしておく

#+BEGIN_SRC elisp
  (use-package embark
    :straight t
    :ensure t
    :bind
    (("C-." . embark-act)         ;; pick some comfortable binding
     ("C-;" . embark-dwim)        ;; good alternative: M-.


@@ 390,10 392,11 @@
                   (window-parameters (mode-line-format . none)))))

#+END_SRC
** embark-consult

#+begin_src elisp
  (use-package embark-consult
    :straight t
    :ensure t
    :after (consult embark)
    :hook
    (embark-collect-mode . consult-preview-at-point-mode))