This commit is contained in:
Jakub 2026-04-09 13:39:15 +08:00
parent ebbe94030f
commit e7a83019ce
4 changed files with 50 additions and 1 deletions

View file

@ -73,6 +73,8 @@
(setq custom-file (concat user-emacs-directory "custom.el"))
(when (file-exists-p custom-file) (load custom-file))
;; Performance improvements
(load (concat user-emacs-directory "performance.el"))
;; Writing behavior and packages
(load (concat user-emacs-directory "writing.el"))
;; Navigation behavior and packages

View file

@ -23,7 +23,8 @@
;;; Code:
;; Smooth scrolling
(setq bidi-paragraph-direction 'left-to-right
(setq bidi-display-reordering 'left-to-right
bidi-paragraph-direction 'left-to-right
bidi-inhibit-bpa t
bidi-display-reordering nil)

29
performance.el Normal file
View file

@ -0,0 +1,29 @@
;;; performance.el --- Performance tweaks -*- lexical-binding: t -*-
;; This file is not part of GNU Emacs
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; commentary
;;; Code:
(setq read-process-output-max (* 4 1024 1024))
(provide 'performance)
;;; performance.el ends here

View file

@ -22,6 +22,23 @@
;;; Code:
;; Save interprogram copies
(setq save-interprogram-paste-before-kill t)
;; Prevent duplicates in the kill ring
(setq kill-do-not-save-duplicates t)
;; Save kill ring between sessions
(setq savehist-additional-variables
'(search-ring regexp-search-ring kill-ring))
;; Remove text properties from the saved killring
(add-hook 'savehist-save-hook
(lambda ()
(setq kill-ring
(mapcar #'substring-no-properties
(cl-remove-if-not #'stringp kill-ring)))))
;; Save place in file
(save-place-mode 1)