39 lines
1.3 KiB
EmacsLisp
39 lines
1.3 KiB
EmacsLisp
;;; init-look.el --- making emacs look decent. -*- lexical-binding: t -*-
|
|
;;; Commentary:
|
|
;;; Code:
|
|
;;; 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)
|