Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minimal config. #5

Open
2 tasks
tlentali opened this issue May 19, 2024 · 0 comments
Open
2 tasks

Minimal config. #5

tlentali opened this issue May 19, 2024 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@tlentali
Copy link
Owner

tlentali commented May 19, 2024

Emacs should be used for org-mode, common-lisp and doing emacs-macros.
For these usages, we need minimal configuration. No theme, no template, no nothing. Keep it simple.

  • org-mode
  • common-lisp

org-mode

For org-mode :

(setq org-agenda-include-diary t)
(global-set-key (kbd "C-c l") #'org-store-link)
(global-set-key (kbd "C-c a") #'org-agenda)
(global-set-key (kbd "C-c c") #'org-capture)

(setq org-agenda-files '("~/project/test_org/"))

Maybe a fancy calendar view can be useful like calfw or hyperscheduler.

common-lisp

For common-lisp, install slime and sbcl using this video.
This minimal setup :

sudo apt install emacs slime sbcl

And then in emacs.elfile :

(require 'package)
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(dolist (package '(slime))
  (unless (package-installed-p package)
    (package-install package)))
(require 'slime)
(slime-setup '(slime-fancy slime-quicklisp slime-asdf slime-mrepl))
@tlentali tlentali self-assigned this May 19, 2024
@tlentali tlentali added the enhancement New feature or request label May 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant