1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

Add some settings to newcomers-presets

* etc/themes/newcomers-presets-theme.el (newcomers-presets): Add
mode-line-compact, indent-tabs-mode, imenu-auto-rescan,
view-read-only, shell-command-prompt-show-cwd, after-save-hook,
etags-regen-mode, vc-deduce-backend-nonvc-modes,
vc-dir-save-some-buffers-on-revert, vc-find-revision-no-save,
vc-follow-symlinks, vc-use-incoming-outgoing-prefixes,
tab-bar-history-mode.
This commit is contained in:
Sean Whitton 2026-03-03 10:42:22 +00:00
parent 18c24866af
commit afcc930833

View file

@ -92,6 +92,7 @@ This minor mode will enable and disable the theme on startup."
'(font-use-system-font t)
'(frame-resize-pixelwise t)
'(window-resize-pixelwise t)
'(mode-line-compact 'long)
;;;; Mouse-related options
'(context-menu-mode t)
@ -113,13 +114,24 @@ This minor mode will enable and disable the theme on startup."
'(repeat-mode t)
'(delete-selection-mode t)
'(editorconfig-mode t)
'(indent-tabs-mode nil)
'(imenu-auto-rescan t)
'(view-read-only t)
;;;; Directory managment-related options
'(dired-auto-revert-buffer t)
'(dired-mouse-drag-files t)
'(shell-command-prompt-show-cwd t)
;;;; File-related options
'(after-save-hook '(executable-make-buffer-file-executable-if-script-p))
'(etags-regen-mode t)
'(vc-auto-revert-mode t)
'(vc-deduce-backend-nonvc-modes t)
'(vc-dir-save-some-buffers-on-revert t)
'(vc-find-revision-no-save t)
'(vc-follow-symlinks t)
'(vc-use-incoming-outgoing-prefixes t)
;;;; Completion-related options
'(minibuffer-visible-completions t)
@ -136,6 +148,9 @@ This minor mode will enable and disable the theme on startup."
'(package-autosuggest-mode t)
'(package-menu-use-current-if-no-marks nil)
;;;; Frame and window-related options
'(tab-bar-history-mode t)
)
(provide-theme 'newcomers-presets)