Changeset 480de5f in dotfiles


Ignore:
Timestamp:
Jan 30, 2020, 9:45:09 PM (5 years ago)
Author:
Mikhail Kirillov <w96k@…>
Branches:
master
Children:
00941c1
Parents:
766b5e6
Message:

Add so-long mode; Show encoding;

File:
1 edited

Legend:

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

    r766b5e6 r480de5f  
    1616  (auto-package-update-maybe))
    1717#+END_SRC
    18 
    1918* Внешний вид
    2019** Назначение шрифта
     
    4847#+BEGIN_SRC emacs-lisp
    4948  (use-package mood-line
    50     :ensure
    51     :config (mood-line-mode))
     49    :ensure t
     50    :config
     51    (setq mood-line-show-encoding-information t)
     52    (mood-line-mode))
    5253#+END_SRC
    5354** Подсвечивать текущую строку
    5455#+BEGIN_SRC emacs-lisp
    55 ;;; Display current line
    56 (global-hl-line-mode)
     56  ;;; Display current line
     57  (when (display-graphic-p)
     58  (global-hl-line-mode))
    5759#+END_SRC
    5860* Редактирование кода в общем
     
    512514* Разное
    513515** Минорные твики дефолтного имакса
     516*** Улучшение производительности в больших файлах
     517#+BEGIN_SRC emacs-lisp
     518  (use-package so-long
     519    :config (global-so-long-mode 1))
     520#+END_SRC
    514521*** Скрыть бары и скролл
    515522#+BEGIN_SRC emacs-lisp
Note: See TracChangeset for help on using the changeset viewer.