More config changes
Some checks failed
/ Test config on 20 (push) Failing after 57s

This commit is contained in:
Maciej 2025-01-18 21:09:06 +02:00
parent 118cf92a27
commit 87913bbd6a
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
14 changed files with 243 additions and 241 deletions

View file

@ -18,7 +18,8 @@
;; this to `nil' in the past, but the `bidi-display-reordering's docs say that
;; is an undefined state and suggest this to be just as good:
(setq-default bidi-display-reordering 'left-to-right
bidi-paragraph-direction 'left-to-right)
bidi-paragraph-direction 'left-to-right
bidi-inhibit-bpa t)
;; Reduce rendering/line scan work for Emacs by not rendering cursors or regions
;; in non-focused windows.
@ -31,7 +32,7 @@
(setopt fast-but-imprecise-scrolling t)
;;;;;;;;; TRAMP configuration ;;;;;;;;;;;;;;;;
(use-package tramp :ensure nil :defer 3
(use-package tramp :ensure nil :defer 5
:config
(setopt tramp-default-method "ssh"))
@ -89,7 +90,8 @@
(setopt large-file-warning-threshold 50000000)
;; Numbers are arbitrary, but work on a large screen. Default is 160
(setopt split-width-threshold 200)
(setopt split-width-threshold 190)
;;;;;;;;;;;;;;;;;;;;;; Shell stuff ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(add-hook 'shell-mode-hook 'ansi-color-for-comint-mode-on)
@ -149,9 +151,5 @@
;;;;;;;;;;;;;;;;; Use C-n to create a new line
(setopt next-line-add-newlines t)
;;;;;;;;;;;;;;;;; Speed up long line display by disabling bidirectional text
(setq-default bidi-paragraph-direction 'left-to-right
bidi-inhibit-bpa t)
(provide 'icejam-base)
;;; icejam-base.el ends here