26
6
Emacs 29.3 released (lists.gnu.org)
27
5
28
1
29
5
30
2
31
1
32
6
33
2
Emacs as a Comic Book Reader (lifeofpenguin.blogspot.com)
34
1
35
0
36
5
37
1

I'm trying to get out of my Python/Javascript comfort zone and start contributing to other Fediverse projects that are built in other languages. If you are already using Emacs for your dev work in any of the above languages, can you share perhaps your configuration or at least recommended packages for beginners, which prioritize sensible defaults and can be used with minimal amount of fussing?

38
0
39
6
40
1
submitted 11 months ago by mao to c/emacs@communick.news

cross-posted from: https://lemmy.sdf.org/post/10280862

https://protesilaos.com/emacs/ef-themes-pictures

Theme in picture is ef-summer. I love these so much. They're a breath of fresh air among the other techy-cyber-hacker themes, yknow?

41
11
submitted 1 year ago by tusharhero to c/emacs@communick.news

The other ones seem less active than this one.

42
2
submitted 1 year ago by mao to c/emacs@communick.news

It's gotten too much. I think 1100 is a bit too much custom ELisp code. I also got to a point where my customization started interfering with Doom's core modules, yielded weird errors from time to time. I found out that Doom's defaults are actually beautiful and idk guys I feel refreshed, I'm ready now to get shit done, I can now actually work™️. I have offloaded the annoyances to Henrik.

2024 year of bankruptcy let's go

43
-5
44
3
45
7
46
9
Bad NEWS, Emacs (eshelyaron.com)
47
2

Hi there,

I want to try emacs in my terminal-based workflow. I use tiling window manager (i3 - qtile) in ubuntu

so super+number changes the workspace. When starting an emacs with -nw, changing workspaces

super+[1, 2, 3, etc] inserts "IOIOIO" characters in my buffer.

Any ideas?

48
2
submitted 1 year ago by Aiclys@alien.top to c/emacs@communick.news

I am a newbie to emacs and Linux in general (started my linux journey 2 months ago) and want to learn emacs. Does anyone have good ressources to learn emacs as a beginner? Also should I use a distro like doom Emacs or should I do it from scratch

49
2

What's the best practice to have your custom elisp natively compiled, along with external packages?

So far I've only succeeded by doing the following:

  • Move my custom elisp to a new file (emacs-lib.el) which starts with (provide 'emacs-lib)

  • Manually run emacs-lisp-native-compile-and-load while visiting that file

  • Change my init file to load the library:

    (setq elisp-dir "~/config/elisp") (add-to-list 'load-path elisp-dir) (require 'emacs-lib)

After restarting Emacs, I've checked that many of my custom functions are indeed native-compiled.

It would be nice if I could have my init file take care of compiling the library when missing or outdated. Even better if I didn't need the separate file, but that's no big deal.

50
1
submitted 1 year ago by tsengf@alien.top to c/emacs@communick.news

I wrote a library that lets you cycle through the available themes in Emacs. F10 and shift-F10 keys will cycle forward and backward through the themes. The theme name is printed for reference.

https://github.com/tsengf/theme-cycle

Installation
Download theme-cycle.el into ~/.emacs.d.

Add the following to your Emacs configuration

(add-to-list 'load-path (expand-file-name "~/.emacs.d)
(require 'theme-cycle)
;; Load as many themes as you are interested in exploring.
(use-package doom-themes)
(use-package ef-themes)
(use-package modus-themes)
(use-package solarized-themes)

To Use

Use F10 to cycle forward through the themes. Use shift-F10 to cycle backward through the themes.

view more: ‹ prev next ›

Emacs

323 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 2 years ago
MODERATORS