Skip to content

Instantly share code, notes, and snippets.

@dtoma
Created April 20, 2023 15:10
Show Gist options
  • Save dtoma/90b5c316a23fedbc20906e6f09923bf0 to your computer and use it in GitHub Desktop.
Save dtoma/90b5c316a23fedbc20906e6f09923bf0 to your computer and use it in GitHub Desktop.
Emacs defaults
;; 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