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

  • habamax@alien.topB
    link
    fedilink
    English
    arrow-up
    1
    ·
    10 months ago

    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))
    
  • maksim77@alien.topB
    link
    fedilink
    English
    arrow-up
    1
    ·
    10 months ago

    Thanks!!! I’m now getting back into emacs after a five year hiatus and this repository seems like a good reference.