Remove straight.el builtin sections
This commit is contained in:
parent
0b1fa9643c
commit
bafcb8da3a
@ -10,7 +10,6 @@
|
|||||||
(elpaca-use-package diminish)
|
(elpaca-use-package diminish)
|
||||||
(elpaca-use-package compat)
|
(elpaca-use-package compat)
|
||||||
(elpaca-use-package eldoc
|
(elpaca-use-package eldoc
|
||||||
;; :straight (:type built-in)
|
|
||||||
:ensure nil
|
:ensure nil
|
||||||
:diminish
|
:diminish
|
||||||
:defer 1
|
:defer 1
|
||||||
@ -18,7 +17,6 @@
|
|||||||
|
|
||||||
;; save minibuffer history, see Vertico below
|
;; save minibuffer history, see Vertico below
|
||||||
(elpaca-use-package savehist
|
(elpaca-use-package savehist
|
||||||
;; :straight (:type built-in)
|
|
||||||
:ensure nil
|
:ensure nil
|
||||||
:init (savehist-mode)
|
:init (savehist-mode)
|
||||||
:custom (savehist-file
|
:custom (savehist-file
|
||||||
@ -26,21 +24,18 @@
|
|||||||
|
|
||||||
;; save place in all files
|
;; save place in all files
|
||||||
(elpaca-use-package saveplace
|
(elpaca-use-package saveplace
|
||||||
;; :straight (:type built-in)
|
|
||||||
:ensure nil
|
:ensure nil
|
||||||
:init (save-place-mode t)
|
:init (save-place-mode t)
|
||||||
:custom
|
:custom
|
||||||
(save-place-file
|
(save-place-file
|
||||||
(expand-file-name "file-position-save" backup-directory)))
|
(expand-file-name "file-position-save" backup-directory)))
|
||||||
(elpaca-use-package tramp
|
(elpaca-use-package tramp
|
||||||
;; :straight (:type built-in)
|
|
||||||
:ensure nil
|
:ensure nil
|
||||||
;; :after eshell
|
;; :after eshell
|
||||||
:custom (tramp-persistency-file-name
|
:custom (tramp-persistency-file-name
|
||||||
(expand-file-name "tramp-history" backup-directory)))
|
(expand-file-name "tramp-history" backup-directory)))
|
||||||
;; Visualize whitespace. In a very chill and invisible way.
|
;; Visualize whitespace. In a very chill and invisible way.
|
||||||
(elpaca-use-package whitespace
|
(elpaca-use-package whitespace
|
||||||
;; :straight (:type built-in)
|
|
||||||
:ensure nil
|
:ensure nil
|
||||||
:diminish (whitespace-mode org-indent-mode org-vw-mode auto-fill-mode)
|
:diminish (whitespace-mode org-indent-mode org-vw-mode auto-fill-mode)
|
||||||
:custom
|
:custom
|
||||||
@ -51,7 +46,6 @@
|
|||||||
(prog-mode . whitespace-mode)
|
(prog-mode . whitespace-mode)
|
||||||
(org-mode . auto-fill-mode))
|
(org-mode . auto-fill-mode))
|
||||||
(elpaca-use-package image-mode
|
(elpaca-use-package image-mode
|
||||||
;; :straight (:type built-in)
|
|
||||||
:ensure nil
|
:ensure nil
|
||||||
:config
|
:config
|
||||||
(turn-off-line-numbers)
|
(turn-off-line-numbers)
|
||||||
@ -59,7 +53,6 @@
|
|||||||
|
|
||||||
;; ...and finally, sync files with disk changes
|
;; ...and finally, sync files with disk changes
|
||||||
(elpaca-use-package autorevert
|
(elpaca-use-package autorevert
|
||||||
;; :straight (:type built-in)
|
|
||||||
:ensure nil
|
:ensure nil
|
||||||
:diminish auto-revert-mode
|
:diminish auto-revert-mode
|
||||||
:config (global-auto-revert-mode))
|
:config (global-auto-revert-mode))
|
||||||
@ -142,7 +135,6 @@
|
|||||||
|
|
||||||
;; eshell. Pretty good actually.
|
;; eshell. Pretty good actually.
|
||||||
(elpaca-use-package eshell
|
(elpaca-use-package eshell
|
||||||
;; :straight (:type built-in)
|
|
||||||
:ensure nil
|
:ensure nil
|
||||||
:commands (eshell/emacs eshell/man)
|
:commands (eshell/emacs eshell/man)
|
||||||
:custom
|
:custom
|
||||||
@ -551,7 +543,6 @@ targets."
|
|||||||
|
|
||||||
;; org mode and messy things
|
;; org mode and messy things
|
||||||
(elpaca-use-package org
|
(elpaca-use-package org
|
||||||
;; :straight (:type built-in)
|
|
||||||
:ensure nil
|
:ensure nil
|
||||||
:diminish (org-indent-mode org-vw-mode)
|
:diminish (org-indent-mode org-vw-mode)
|
||||||
:custom
|
:custom
|
||||||
@ -607,7 +598,6 @@ See https://emacs.stackexchange.com/questions/2538/how-to-define-additional-mode
|
|||||||
"=" 'mitch/org-dwim-char))
|
"=" 'mitch/org-dwim-char))
|
||||||
|
|
||||||
(elpaca-use-package org-tempo
|
(elpaca-use-package org-tempo
|
||||||
;; :straight (:type built-in)
|
|
||||||
:ensure nil
|
:ensure nil
|
||||||
:after org
|
:after org
|
||||||
:config
|
:config
|
||||||
@ -899,7 +889,6 @@ Return nil if DIR is not in a hugo project at all."
|
|||||||
|
|
||||||
;; built in spell checker, for losers
|
;; built in spell checker, for losers
|
||||||
(elpaca-use-package flyspell
|
(elpaca-use-package flyspell
|
||||||
;; :straight (:type built-in)
|
|
||||||
:ensure nil
|
:ensure nil
|
||||||
:diminish
|
:diminish
|
||||||
:custom
|
:custom
|
||||||
@ -915,13 +904,11 @@ Return nil if DIR is not in a hugo project at all."
|
|||||||
|
|
||||||
;; unique buffer names
|
;; unique buffer names
|
||||||
(elpaca-use-package uniquify
|
(elpaca-use-package uniquify
|
||||||
;; :straight (:type built-in)
|
|
||||||
:ensure nil
|
:ensure nil
|
||||||
:custom (uniquify-buffer-name-style 'forward))
|
:custom (uniquify-buffer-name-style 'forward))
|
||||||
|
|
||||||
;; cache file cleanup
|
;; cache file cleanup
|
||||||
(elpaca-use-package kkc
|
(elpaca-use-package kkc
|
||||||
;; :straight (:type built-in)
|
|
||||||
:ensure nil
|
:ensure nil
|
||||||
:custom (kkc-init-file-name (expand-file-name "kkcrc" backup-directory)))
|
:custom (kkc-init-file-name (expand-file-name "kkcrc" backup-directory)))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user