working system

This commit is contained in:
Charlie Root 2024-09-06 11:42:11 +02:00
commit e0ad4ea627
53 changed files with 2927 additions and 0 deletions

36
lisp/init-look.el Normal file
View file

@ -0,0 +1,36 @@
;;; 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)