Changeset 2f85958 in dotfiles


Ignore:
Timestamp:
Nov 10, 2022, 2:17:02 PM (2 years ago)
Author:
w96k <w96k@…>
Branches:
master
Children:
6188d2e
Parents:
d652ebb
Message:

Emacs: add psysh. Add undo-tree to org-mode.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • emacs/.emacs.d/.emacs-config.org

    rd652ebb r2f85958  
    209209      (package-install 'link-hint)
    210210      (package-install 'whole-line-or-region)
     211      (package-install 'psysh)
    211212      (package-install 'restclient)))
    212213#+end_src
     
    256257стал использовать, потому что иксы замыливают этот пиксельный шрифт, что
    257258делает его использование крайне неприятным.
    258 #+begin_src emacs-lisp :tangle early-init.el 
     259#+begin_src emacs-lisp :tangle init.el 
    259260  ;; Do not resize the frame at this early stage.
    260261  (setq frame-inhibit-implied-resize t)
     
    432433    (rename-file (concat config-dotfiles-path "early-init.el") config-path t)
    433434    (rename-file (concat config-dotfiles-path "init.el") config-path t))
    434 
     435 
    435436  (defun config-load ()
    436437    (interactive)
     
    477478#+begin_src emacs-lisp :tangle init.el
    478479  (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))
    500502
    501503    (setq mini-modeline-truncate-p nil
     
    984986    (progn
    985987      (add-hook 'prog-mode-hook #'undo-tree-mode)
     988      (add-hook 'org-mode-hook #'undo-tree-mode)
    986989      (setq undo-tree-auto-save-history nil)))
    987990#+end_src
Note: See TracChangeset for help on using the changeset viewer.