Remove the old settings.

This commit is contained in:
Tom Alexander 2023-09-09 04:41:24 -04:00
parent b86d7813a9
commit db30ae976a
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 3 additions and 47 deletions

View File

@ -55,59 +55,15 @@
package-native-compile t
;; Typed text replaces selection
delete-selection-mode t
;; Confirm when opening a file that does not exist
confirm-nonexistent-file-or-buffer t
)
;; (setq-default fringes-outside-margins t)
(pixel-scroll-precision-mode)
;; ;; Emacs customizations
;; (setq-default
;; confirm-nonexistent-file-or-buffer t
;; save-interprogram-paste-before-kill t
;; mouse-yank-at-point t
;; visible-bell nil
;; ring-bell-function 'ignore
;; ;; http://ergoemacs.org/emacs/emacs_stop_cursor_enter_prompt.html
;; minibuffer-prompt-properties
;; '(read-only t point-entered minibuffer-avoid-prompt face minibuffer-prompt)
;; ;; Disable non selected window highlight
;; cursor-in-non-selected-windows nil
;; highlight-nonselected-windows nil
;; ;; PATH
;; exec-path (append exec-path '("/usr/local/bin/"))
;; tab-width 4
;; fringes-outside-margins t
;; x-select-enable-clipboard t
;; ispell-program-name "aspell"
;; browse-url-browser-function 'browse-url-generic
;; browse-url-generic-program "firefox-developer-edition"
;; ;; mouse-wheel-progressive-speed nil ;; Don't accelerate mouse wheel
;; ;; mouse-wheel-scroll-amount '(5 ((shift) . 3))
;; )
;; ;; Bookmarks
;; (setq
;; ;; persistent bookmarks
;; bookmark-save-flag t
;; bookmark-default-file (concat temp-dir "/bookmarks"))
;; ;; Backups enabled, use nil to disable
;; (setq
;; history-length 1000
;; backup-inhibited nil
;; make-backup-files nil
;; auto-save-default nil
;; auto-save-list-file-name (concat temp-dir "/autosave")
;; create-lockfiles nil
;; backup-directory-alist `((".*" . ,(concat temp-dir "/backup/")))
;; auto-save-file-name-transforms `((".*" ,(concat temp-dir "/auto-save-list/") t)))
;; Delete trailing whitespace before save
(add-hook 'before-save-hook 'delete-trailing-whitespace)
(provide 'base)
;;; base ends here

View File

@ -81,7 +81,7 @@
;;
;; (
;; (rust-ts-mode . ((eglot-workspace-configuration
;; . (:rust-analyzer (:cargo (:noDefaultFeatures t :features "compare"))))
;; . (:rust-analyzer (:cargo (:noDefaultFeatures t :features ["compare" "tracing"]))))
;; ))
;; )