Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: el-getからstraightに統一する #25

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
:ensure t
:init
;; optional packages if you want to use :hydra, :el-get, :blackout,,,
(leaf el-get :ensure t)
(leaf blackout :ensure t)
(leaf diminish :ensure t)
:config
Expand Down Expand Up @@ -1108,8 +1107,8 @@ Forgeとかにも作成機能はあるが、レビュアーやラベルやProjec
(leaf expand-region :ensure t)
(leaf google-this :ensure t)
(leaf multiple-cursors :ensure t)
(leaf ncaq-emacs-utils :el-get ncaq/ncaq-emacs-utils :require t)
(leaf point-undo :el-get ncaq/point-undo :require t)
(leaf ncaq-emacs-utils :straight (ncaq-emacs-utils :type git :host github :repo "ncaq/ncaq-emacs-utils") :require t)
(leaf point-undo :straight (point-undo :type git :host github :repo "ncaq/point-undo") :require t)
(leaf symbolword-mode :ensure t :require t :global-minor-mode t :blackout t)
(leaf which-key :ensure t :global-minor-mode t :blackout t)

Expand Down Expand Up @@ -1776,7 +1775,7 @@ poetryなどの自動的なトラッキングを使わずにマニュアルで
;;; VB

(leaf visual-basic-mode
:el-get emacsmirror/visual-basic-mode
:straight (visual-basic-mode :type git :host github :repo "emacsmirror/visual-basic-mode")
:mode "\\.\\(?:frm\\|\\(?:ba\\|cl\\|vb\\)s\\)\\'"
:custom
(visual-basic-capitalize-keywords-p . nil) ; 文字列リテラルの内部の名前まで変更してしまうのでオフにします
Expand Down