https://github.com/oskarrough/emacs
https://github.com/oskarrough/emacs
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/oskarrough/emacs
- Owner: oskarrough
- Created: 2022-01-14T16:58:06.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-20T13:29:31.000Z (over 4 years ago)
- Last Synced: 2025-04-05T00:16:05.409Z (about 1 year ago)
- Language: Emacs Lisp
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.el
Awesome Lists containing this project
README
(setq make-backup-files nil)
(defun config-visit()
"Visit the emacs config directory, to quickly access and make changes."
(interactive)
(find-file "~/.emacs.d/"))
(global-set-key (kbd "C-c e") 'config-visit)
(defun config-reload()
"Reload the user config, to get the latest saved changes"
(interactive)
(load user-init-file))
(global-set-key (kbd "C-c r") 'config-reload)