feat(spacious-padding): init spacious-padding

This commit is contained in:
Artur Manuel 2025-03-09 13:07:31 +00:00
commit 3770d42434
Signed by: amadaluzia
SSH key fingerprint: SHA256:Zwg7gBuZyaG48ucAZneJwltiXu0+tJb7c3lYt9AYlLg

View file

@ -2,6 +2,9 @@
(use-package emacs (use-package emacs
:init :init
(setq frame-resize-pixelwise t
window-resize-pixelwise t
frame-inhibit-implied-resize t)
(defun crm-indicator (args) (defun crm-indicator (args)
(cons (format "[CRM%s] %s" (cons (format "[CRM%s] %s"
(replace-regexp-in-string (replace-regexp-in-string
@ -13,17 +16,16 @@
(setq minibuffer-prompt-properties (setq minibuffer-prompt-properties
'(read-only t cursor-intangible t face minibuffer-prompt)) '(read-only t cursor-intangible t face minibuffer-prompt))
(add-hook 'minibuffer-setup-hook #'cursor-intangible-mode) (add-hook 'minibuffer-setup-hook #'cursor-intangible-mode)
:custom
(inhibit-splash-screen t)
(inhibit-startup-screen t)
(initial-scratch-message nil)
(enable-recursive-minibuffers t)
(read-extended-command-predicate #'command-completion-default-include-p)
(tab-always-indent 'complete)
:config :config
(menu-bar-mode -1) (menu-bar-mode -1)
(tool-bar-mode -1) (tool-bar-mode -1)
(scroll-bar-mode -1) (scroll-bar-mode -1)
(setq inhibit-splash-screen t
inhibit-startup-screen t
initial-scratch-message nil
enable-recursive-minibuffers t
read-extended-command-predicate #'command-completion-default-include-p
tab-always-indent 'complete)
:hook (prog-mode . display-line-numbers-mode)) :hook (prog-mode . display-line-numbers-mode))
(use-package mood-line (use-package mood-line
@ -82,4 +84,9 @@
:bind (("C-x p t" . project-vterm) :bind (("C-x p t" . project-vterm)
("C-c t" . vterm))) ("C-c t" . vterm)))
(use-package spacious-padding
:config
(spacious-padding-mode)
)
(provide 'config) (provide 'config)