63 lines
2.2 KiB
EmacsLisp
63 lines
2.2 KiB
EmacsLisp
|
;;; custom.el --- fschl-crafted-emacs-config -*- lexical-binding: t; -*-
|
||
|
|
||
|
;; Copyright (C) 2023 fschl
|
||
|
|
||
|
;; Author: fschl <fschl@x230-x>
|
||
|
;; Keywords: tools, docs
|
||
|
(custom-set-variables
|
||
|
;; custom-set-variables was added by Custom.
|
||
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||
|
;; Your init file should contain only one such instance.
|
||
|
;; If there is more than one, they won't work right.
|
||
|
'(Man-notify-method 'aggressive t)
|
||
|
'(bookmark-save-flag 1 t)
|
||
|
'(completion-category-overrides '((file (styles partial-completion))))
|
||
|
'(completion-cycle-threshold 3)
|
||
|
'(completions-detailed t)
|
||
|
'(corfu-auto t)
|
||
|
'(corfu-auto-delay 0.0)
|
||
|
'(corfu-auto-prefix 2)
|
||
|
'(corfu-cycle t)
|
||
|
'(corfu-echo-documentation 0.25 t)
|
||
|
'(dired-auto-revert-buffer t)
|
||
|
'(dired-dwim-target t)
|
||
|
'(ediff-window-setup-function 'ediff-setup-windows-plain t)
|
||
|
'(eshell-scroll-to-bottom-on-input 'this t)
|
||
|
'(evil-respect-visual-line-mode t)
|
||
|
'(evil-undo-system 'undo-redo)
|
||
|
'(evil-want-C-h-delete t)
|
||
|
'(evil-want-C-i-jump nil)
|
||
|
'(evil-want-integration t)
|
||
|
'(evil-want-keybinding nil)
|
||
|
'(fast-but-imprecise-scrolling t)
|
||
|
'(global-auto-revert-non-file-buffers t)
|
||
|
'(ibuffer-movement-cycle nil t)
|
||
|
'(ibuffer-old-time 24 t)
|
||
|
'(kill-do-not-save-duplicates t)
|
||
|
'(load-prefer-newer t t)
|
||
|
'(org-hide-emphasis-markers t t)
|
||
|
'(org-link-descriptive t t)
|
||
|
'(org-mouse-1-follows-link t t)
|
||
|
'(org-return-follows-link t t)
|
||
|
'(package-archive-priorities
|
||
|
'(("gnu" . 99)
|
||
|
("nongnu" . 80)
|
||
|
("stable" . 70)
|
||
|
("melpa" . 0)))
|
||
|
'(package-selected-packages
|
||
|
'(magit helpful elisp-demos all-the-icons org-appear denote evil-nerd-commenter evil-collection evil vertico orderless marginalia embark-consult embark corfu-terminal corfu consult cape))
|
||
|
'(scroll-conservatively 101)
|
||
|
'(scroll-margin 0)
|
||
|
'(scroll-preserve-screen-position t)
|
||
|
'(switch-to-buffer-in-dedicated-window 'pop)
|
||
|
'(switch-to-buffer-obey-display-actions t)
|
||
|
'(tab-always-indent 'complete)
|
||
|
'(vertico-cycle t)
|
||
|
'(xref-show-definitions-function 'xref-show-definitions-completing-read t))
|
||
|
(custom-set-faces
|
||
|
;; custom-set-faces was added by Custom.
|
||
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||
|
;; Your init file should contain only one such instance.
|
||
|
;; If there is more than one, they won't work right.
|
||
|
)
|