Skip to main content

Questions tagged [straight.el]

Filter by
Sorted by
Tagged with
2 votes
0 answers
54 views

I'm trying to switch to writing my own Emacs init-file from using ready-to-use configuration (e.g. doomemacs, spacemacs, purcell), but then a question arises: how to manage Emacs Lisp packages? The ...
anay-tt0x's user avatar
0 votes
1 answer
175 views

I'm trying to install cursor-undo on GNU ELPA, I just get: Debugger entered--Lisp error: (error "Could not find package cursor-undo. Updating recip...") error("Could not find package %...
Jason Hunter's user avatar
  • 1,246
1 vote
1 answer
604 views

I have this (defvar bootstrap-version) (setq straight-repository-branch "develop") ; Need this for new org-contrib location (let ((bootstrap-file (expand-file-name "straight/...
Jason Hunter's user avatar
  • 1,246
1 vote
1 answer
385 views

After switching to fc39, emacs fails to load tramp via my use-package statement: (straight-use-package 'use-package) (setq straight-use-package-by-default t) ... (use-package tramp) The error is as ...
Rob Kramer's user avatar
0 votes
2 answers
693 views

I've copied a file to a path that's definitely listed in load-path symbol. But the file doesn't get loaded when running emacs with --debug-init flag. How would you find out what causes it? It uses ...
Daniel Krajnik's user avatar
0 votes
1 answer
265 views

I have just tried to setup magit using straight.el in my init file as follows: (use-package magit :straight t :bind ("C-x g" . magit-status) :commands (magit-status ...
user4687531's user avatar
5 votes
2 answers
2k views

TL;DR: Is there a way to have straight.el not check out a package via git repo, and have it download slim melpa packages like package.el does? Also, is there a way to have it refrain from ...
Jun Inoue's user avatar
  • 225
0 votes
0 answers
174 views

My config for straight.el is pretty standard ;; Disable package.el in favor of straight.el (setq package-enable-at-startup nil) ;; Bootstrap straight.el (defvar bootstrap-version) (let ((bootstrap-...
Tian's user avatar
  • 298
3 votes
1 answer
124 views

The package straight.el requires the following bootstrapping code in your emacs config: (defvar bootstrap-version) (let ((bootstrap-file (expand-file-name "straight/repos/straight.el/...
user242007's user avatar
0 votes
0 answers
204 views

I use use-package with straight.el on NixOS. Some packages are installed by Nix, such as evil and org-mode. I see that use-package still clones their repositories and tries to build them. How to avoid ...
andreoss's user avatar
1 vote
1 answer
459 views

I’d like to put my dotConfig files into DropBox, including my .emacs.d folder. I’d like to use these across computers and across OS’s. I’ve split out part of my init.el into per-computer files (...
MikeTheTall's user avatar
0 votes
2 answers
1k views

I am considering using straight.el, but reading the docs, I have difficulties to understand whether the particular use cases I am interested in are handled as I hope to. Here are the cases: I have ...
Public Image Ltd.'s user avatar
0 votes
0 answers
1k views

I'm using the awesome use-package and the awesome straight.el to manage packages. I'd like to use xahk-mode. I've checked in the 'repos' directory of straight and I can see a folder named xahk-mode ...
MikeTheTall's user avatar