feat(packages): Replace package.el with straight.el

This commit is contained in:
2020-01-31 02:47:23 +00:00
parent ee916bb347
commit b13ca362cb
51 changed files with 304 additions and 15916 deletions

View File

@@ -9,7 +9,7 @@
;; Emacs 27.x and later: Use native display-fill-column-indicator
(when (not (version< emacs-version "27.0"))
(use-package display-fill-column-indicator
:ensure nil ;; loaded from emacs built-ins
:straight (:type built-in)
:hook
(prog-mode . display-fill-column-indicator-mode)

View File

@@ -7,7 +7,7 @@
;;; Code:
(use-package display-line-numbers
:ensure nil ;; loaded from emacs built-ins
:straight (:type built-in)
:hook
(prog-mode . display-line-numbers-mode))
@@ -20,7 +20,7 @@ Optional ARG is passed directly to mode toggle function."
;; Fix issue were the left fringe's is cut off by one pixel on the left side.
;; from: https://github.com/dgutov/diff-hl/issues/94#issuecomment-334168416
(use-package frame
:ensure nil ;; loaded from emacs built-ins
:straight (:type built-in)
:defer t
:config
(progn

View File

@@ -7,7 +7,7 @@
;;; Code:
(use-package hideshow
:ensure nil ;; loaded from emacs built-ins
:straight (:type built-in)
:demand
:bind
@@ -43,8 +43,8 @@ Borrowed from: http://www.emacswiki.org/emacs/HideShow"
(1+ (current-column)))))))
(use-package hideshowvis
:ensure nil ;; loaded from vendor
:demand)
:demand
:after hideshow)
(provide 'siren-folding)
;;; siren-folding.el ends here

View File

@@ -1,23 +0,0 @@
;;; siren-helm-command.el --- jimeh's Emacs Siren: helm-command.
;;; Commentary:
;; Configure helm-command.
;;; Code:
(require 'siren-helm)
(use-package helm-command
:ensure helm
:defer t
:bind
("M-x" . helm-M-x)
:custom
(helm-M-x-always-save-history t)
(helm-M-x-fuzzy-match t))
(provide 'siren-helm-command)
;;; siren-helm-command.el ends here

View File

@@ -7,7 +7,7 @@
;;; Code:
(use-package ido
:ensure nil ;; loaded from emacs built-ins
:straight (:type built-in)
:custom
(ido-auto-merge-work-directories-length -1)