https://github.com/albertoeaf/myemacs
Configuration for my emacs
https://github.com/albertoeaf/myemacs
Last synced: about 1 year ago
JSON representation
Configuration for my emacs
- Host: GitHub
- URL: https://github.com/albertoeaf/myemacs
- Owner: AlbertoEAF
- Created: 2020-03-30T20:43:02.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2025-02-28T14:11:52.000Z (over 1 year ago)
- Last Synced: 2025-02-28T20:01:31.707Z (over 1 year ago)
- Language: Emacs Lisp
- Size: 255 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
This repo has all the configurations neatly organized into the `myemacs-2020.org` file.
To use it just add this line to your `.emacs` file:
```lisp
;; Add this to your .emacs file:
(setq myemacs-dir "~/myemacs/") ;; To load internal modules
(org-babel-load-file "~/myemacs/myemacs-2020.org")
```
# Installation alternatives:
Since this provides an `init.el` file with that line you can alternatively load that `init.el` directly or even set this repo as the emacs directory to try it out without affecting your emacs:
```lisp
(setq myemacs-dir "~/myemacs/") ;; To load internal modules
(setq user-emacs-directory "~/myemacs")
```
# Also...
Don't forget that emacs has many built-ins already. Don't re-invent the wheel :)
Want to encase something in quotes, parenthesis or something else? Move the cursor behind your word / selected region and do `M-1 M-(`.