;;; config-better-defaults.el --- Generated package (no.3) from my config -*- lexical-binding: t; -*- ;; ;; Copyright (C) 2024 TEC ;; ;; Author: TEC <https://code.tecosaur.net/tec> ;; Maintainer: TEC <contact@tecosaur.net> ;; Created: June 26, 2024 ;; Modified: June 26, 2024 ;; Version: 2024.06.26 ;; Homepage: https://code.tecosaur.net/tec/emacs-config ;; Package-Requires: ((emacs "29.1")) ;; ;; This file is not part of GNU Emacs. ;; ;;; Commentary: ;; ;; Generated package (no.3) from my config. ;; ;; During generation, dependency on other aspects of my configuration and ;; packages is inferred via (regexp-based) static analysis. While this seems ;; to do a good job, this method is imperfect. This code likely depends on ;; utilities provided by Doom, and if you try to run it in isolation you may ;; discover the code makes more assumptions. ;; ;; That said, I've found pretty good results so far. ;; ;;; Code: (setq-default delete-by-moving-to-trash t ; Delete files to trash window-combination-resize t ; take new window space from all other windows (not just current) x-stretch-cursor t) ; Stretch cursor to the glyph width (setq undo-limit 80000000 ; Raise undo-limit to 80Mb evil-want-fine-undo t ; By default while in insert all changes are one big blob. Be more granular auto-save-default t ; Nobody likes to loose work, I certainly don't truncate-string-ellipsis "…" ; Unicode ellispis are nicer than "...", and also save /precious/ space password-cache-expiry nil ; I can trust my computers ... can't I? ;; scroll-preserve-screen-position 'always ; Don't have `point' jump around scroll-margin 2 ; It's nice to maintain a little margin display-time-default-load-average nil) ; I don't think I've ever found this useful (display-time-mode 1) ; Enable time in the mode-line (global-subword-mode 1) ; Iterate through CamelCase words (add-to-list 'default-frame-alist '(height . 24)) (add-to-list 'default-frame-alist '(width . 80)) (setq-default custom-file (expand-file-name ".custom.el" doom-user-dir)) (when (file-exists-p custom-file) (load custom-file)) (setq evil-vsplit-window-right t evil-split-window-below t) (defadvice! prompt-for-buffer (&rest _) :after '(evil-window-split evil-window-vsplit) (consult-buffer)) (map! :map evil-window-map "SPC" #'rotate-layout ;; Navigation "<left>" #'evil-window-left "<down>" #'evil-window-down "<up>" #'evil-window-up "<right>" #'evil-window-right ;; Swapping windows "C-<left>" #'+evil/window-move-left "C-<down>" #'+evil/window-move-down "C-<up>" #'+evil/window-move-up "C-<right>" #'+evil/window-move-right) (global-set-key [remap dabbrev-expand] #'hippie-expand) (setq hippie-expand-try-functions-list '(try-expand-list try-expand-dabbrev-visible try-expand-dabbrev try-expand-all-abbrevs try-expand-dabbrev-all-buffers try-complete-file-name-partially try-complete-file-name try-expand-dabbrev-from-kill try-expand-whole-kill try-expand-line try-complete-lisp-symbol-partially try-complete-lisp-symbol)) ;; (setq-default major-mode 'org-mode) (provide 'config-better-defaults) ;;; config-better-defaults.el ends here