this post was submitted on 12 Nov 2023
1 points (100.0% liked)

Emacs

305 readers
1 users here now

A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!

Get Emacs

Rules

  1. Posts should be emacs related
  2. Be kind please
  3. Yes, we already know: Google results for "emacs" and "vi" link to each other. We good.

Emacs Resources

Emacs Tutorials

Useful Emacs configuration files and distributions

Quick pain-saver tip

founded 1 year ago
MODERATORS
 

Hello everyone!

I present to you kickstart.emacs.

A starting point for Gnu Emacs with good defaults, vim keybindings and packages that most people may want to use without needing to watch hours of tutorial videos to get started.

One of the project goals is to become something like kickstart.nvim.
Or, to be a reference if someone doesn't know how to do something.

I would appreciate any feedback.
Thanks for reading!

https://preview.redd.it/s44fshrsurzb1.png?width=1920&format=png&auto=webp&s=c0bd3a4af4407905da252ee6dbb38f795373d897

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 10 months ago (1 children)

Do you think you need this in emacs 29?

(require 'package)
(require 'use-package) ;; requires package.el and use-package so we can use it

(package-initialize)
(unless package-archive-contents
  (package-refresh-contents))

;; Initialize use-package on non-Linux platforms
(unless (package-installed-p 'use-package)
  (package-install 'use-package))
[–] [email protected] 1 points 10 months ago

Thank you for pointing it out!

I removed it.