Created
April 20, 2023 15:10
-
-
Save dtoma/90b5c316a23fedbc20906e6f09923bf0 to your computer and use it in GitHub Desktop.
Emacs defaults
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; https://www.emacswiki.org/emacs/DeleteSelectionMode | |
(delete-selection-mode 1) | |
;; https://www.emacswiki.org/emacs/InteractivelyDoThings | |
(require 'ido) | |
(ido-mode t) | |
;; https://www.emacswiki.org/emacs/TabBarMode | |
;; https://www.emacswiki.org/emacs/ImenuMode | |
;; https://www.emacswiki.org/emacs/WindMove | |
(when (fboundp 'windmove-default-keybindings) | |
(windmove-default-keybindings)) | |
(windmove-default-keybindings 'meta) | |
;; https://www.lysator.liu.se/~tab/artist/ | |
;; https://github.com/rougier/nano-emacs | |
;; https://github.com/dustacio/better-defaults | |
;; https://github.com/abo-abo/swiper | |
;; https://emacs-tree-sitter.github.io/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment