Questions tagged [el-get]

`el-get` helps you install and manage Elisp code for Emacs. It supports lots of different types of sources and is able to install them, update them, or remove them.

El-Get allows you to install and manage elisp code for Emacs. It supports lots of different types of sources and is able to install them, update them and remove them, but more importantly it will init them for you. That means it will require the features you need, load the necessary files, set the Info paths so that C-h i shows the new documentation you now depend on, and finally call your own initialisation code for you to setup the extension. Or call it a package.

4 questions
1
vote
1 answer

How can I go back to Texinfo native mode

I have a early-init.el file with: (add-to-list 'load-path "~/.emacs.d/el-get/el-get") (unless (require 'el-get nil 'noerror) (require 'package) (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/")) …
Raoul HATTERER
  • 295
  • 1
  • 9
1
vote
1 answer

Error during installation of Magit: "el-get: make el-get could not build transient [make EMACSBIN=c:/Users/.../emacs-26.1-x86_64/bin/emacs info]

In this folder ~/.emacs.d/el-get/transient (master) there are following files for transient ./ ../ .git/ .github/ .gitignore default.mk docs/ LICENSE lisp/ Makefile README.md then run runemacs --debug-init from MINGW64(git-bash) command line and…
YiC
  • 105
  • 1
  • 8
1
vote
1 answer

fetching elisp library from url

I am using use-package in my .emacs and it is great. However occasionally I want to use a 3-rd party code which is not in [M]ELPA. Of course, I can download it but then I will need to maintain a copy of it on all the machines I use. Now I can just…
krokodil
  • 131
  • 4
1
vote
1 answer

el-get Basic Setup (https://github.com/dimitri/el-get) : error: Unable to find 'git'

Start Emacs from gitbash (MINGW64) Snippet below is loaded automatically: ; add el-get to the load path, and install it if it doesn't exist (add-to-list 'load-path "~/.emacs.d/el-get/el-get") (unless (require 'el-get nil 'noerror) …
YiC
  • 105
  • 1
  • 8