update emacs config to 21th century

This commit is contained in:
2023-04-12 14:26:43 +02:00
parent 76ce84c43b
commit 725984485a
121 changed files with 6584 additions and 6864 deletions

17
conf-lisp/display.el Normal file
View File

@@ -0,0 +1,17 @@
;;; Display settings
;; better visibility of cursor in console sessions
(unless (display-graphic-p)
;; instead of closing the terminal, just kill the buffer
(global-set-key (kbd "C-x c") 'kill-this-buffer)
(set-face-attribute 'fringe nil :inverse-video t)
(invert-face 'default)
(invert-face 'mode-line))
(use-package solarized-theme
:ensure t
:config
(load-theme 'solarized-dark t))
;;; ** increase default font size on startup
(set-face-attribute 'default nil :height 133)