mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
feat(packages): Replace package.el with straight.el
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user