Changeset 2f85958 in dotfiles
- Timestamp:
- Nov 10, 2022, 2:17:02 PM (2 years ago)
- Branches:
- master
- Children:
- 6188d2e
- Parents:
- d652ebb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
emacs/.emacs.d/.emacs-config.org
rd652ebb r2f85958 209 209 (package-install 'link-hint) 210 210 (package-install 'whole-line-or-region) 211 (package-install 'psysh) 211 212 (package-install 'restclient))) 212 213 #+end_src … … 256 257 стал использовать, потому что иксы замыливают этот пиксельный шрифт, что 257 258 делает его использование крайне неприятным. 258 #+begin_src emacs-lisp :tangle early-init.el259 #+begin_src emacs-lisp :tangle init.el 259 260 ;; Do not resize the frame at this early stage. 260 261 (setq frame-inhibit-implied-resize t) … … 432 433 (rename-file (concat config-dotfiles-path "early-init.el") config-path t) 433 434 (rename-file (concat config-dotfiles-path "init.el") config-path t)) 434 435 435 436 (defun config-load () 436 437 (interactive) … … 477 478 #+begin_src emacs-lisp :tangle init.el 478 479 (when (package-loaded? "mini-modeline") 479 (setq mini-modeline-r-format '("%e" 480 mode-line-front-space 481 482 mode-line-mule-info 483 mode-line-client 484 mode-line-modified 485 mode-line-remote 486 487 mode-line-frame-identification 488 ;;long-path 489 ;; mode-line-buffer-identification 490 mode-line-misc-info 491 492 mode-line-frame-identification 493 mode-line-major-mode 494 495 mode-line-frame-identification 496 vc-mode 497 mode-line-frame-identification 498 499 mode-line-position)) 480 (setq mini-modeline-r-format 481 '("%e" 482 mode-line-front-space 483 484 mode-line-mule-info 485 mode-line-client 486 mode-line-modified 487 mode-line-remote 488 489 mode-line-frame-identification 490 ;;long-path 491 ;; mode-line-buffer-identification 492 mode-line-misc-info 493 494 mode-line-frame-identification 495 mode-line-major-mode 496 497 mode-line-frame-identification 498 vc-mode 499 mode-line-frame-identification 500 501 mode-line-position)) 500 502 501 503 (setq mini-modeline-truncate-p nil … … 984 986 (progn 985 987 (add-hook 'prog-mode-hook #'undo-tree-mode) 988 (add-hook 'org-mode-hook #'undo-tree-mode) 986 989 (setq undo-tree-auto-save-history nil))) 987 990 #+end_src
Note:
See TracChangeset
for help on using the changeset viewer.