diff options
| author | alex <alex@pdp7.net> | 2025-11-02 12:20:16 +0100 |
|---|---|---|
| committer | alexpdp7 <alex@corcoles.net> | 2025-11-02 12:38:55 +0100 |
| commit | 344b19df5d83dd350be9105d74760593b01fce3e (patch) | |
| tree | e40cf66c800cf81bfc0241aac8f5a5cb9caf549b | |
| parent | c8a7fbcc335c26199ae460891922333af1a5c301 (diff) | |
Reorder and reformat a bit
| -rw-r--r-- | emacs/emacs.el | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/emacs/emacs.el b/emacs/emacs.el index ace05533..3c57c726 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -4,20 +4,28 @@ ;; Nicer defaults +(fido-vertical-mode) ; nice completion for M-x +(which-key-mode) ; learn keyboard shortcuts + (setq compilation-scroll-output t) (setq column-number-mode t) ; in the mode line + (setq-default show-trailing-whitespace t) (global-whitespace-mode) (setopt whitespace-style '(tab-mark)) + (xterm-mouse-mode 1) + (save-place-mode t) ; persists your position in files -(setq custom-file "~/.emacs.d/disable-custom-variable-saving") + +(setq custom-file "~/.emacs.d/disable-custom-variable-saving") ; do not do weird things when changing variables + (load-theme 'modus-vivendi :no-confirm) ; colorblind-friendly theme... but has issues with emoji and other unicode. If facing issues, M-x disable-theme -(fido-vertical-mode) ; nice completion for M-x -(which-key-mode) ; learn keyboard shortcuts + (global-completion-preview-mode 1) ; show things that you can tab-complete (setq tab-always-indent 'complete) ; allow tab to complete (setq text-mode-ispell-word-completion nil) ; but do not complete dictionary words + (windmove-default-keybindings) ; S-cursor to move to different windows (setq org-startup-folded t) |
