KarimAziev / straight-extra

Misc straight utils.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

straight-extra

Extra utils for straight.el.

Installation

Required dependencies:

Manual

Download the source code and put it wherever you like, e.g. into ~/.emacs.d/straight-extra/

git clone https://github.com/KarimAziev/straight-extra.git ~/.emacs.d/straight-extra/

Add the downloaded directory to the load path:

(add-to-list 'load-path "~/.emacs.d/straight-extra/")
(require 'straight-extra)
(use-package straight-extra
  :straight (straight-extra
             :repo "KarimAziev/straight-extra"
             :type git
             :host github)
  :bind (("<f12>" . straight-extra-transient-menu)
         ("C-c u" . straight-extra-jump-to-package-config)
         (:map straight-extra-minibuffer-keymap
               ("C-j" . straight-extra-browse-preview)
               ("C-c o" . straight-extra-browse-in-other-window)))
  :commands (straight-extra-jump-to-package-config
             straight-extra-jump-to-uncommited-repo
             straight-extra-install-package
             straight-extra-browse-package
             straight-extra-insert-use-package))

About

Misc straight utils.

License:GNU General Public License v3.0


Languages

Language:Emacs Lisp 100.0%