.emacs.d/lisp/init-look.el

37 lines
1.2 KiB
EmacsLisp
Raw Normal View History

2024-09-06 11:42:11 +02:00
;;; Line spacing, can be 0 for code and 1 or 2 for text
;;; -------------------------------------------------------------------
(setq-default line-spacing 0)
(setq x-underline-at-descent-line t)
(setq widget-image-enable nil)
;;; -------------------------------------------------------------------
;;; Line cursor and no blink
;;; -------------------------------------------------------------------
(set-default 'cursor-type '(bar . 1))
(blink-cursor-mode 0)
;;; -------------------------------------------------------------------
;;; Highlight current line
;;; -------------------------------------------------------------------
(global-hl-line-mode +1)
;;; No sound
;;; -------------------------------------------------------------------
(setq visible-bell t)
(setq ring-bell-function 'ignore)
;;; -------------------------------------------------------------------
;;; No Tooltips
;;; -------------------------------------------------------------------
(tooltip-mode 0)
;;; -------------------------------------------------------------------
;;; Paren mode is part of the theme
;;; -------------------------------------------------------------------
(show-paren-mode t)
;;; -------------------------------------------------------------------
(provide 'init-look)