diff options
author | bd <bdunahu@operationnull.com> | 2024-12-20 23:54:47 -0500 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-12-20 23:54:47 -0500 |
commit | 8c56be82235e4112210b7990ca4dd1f761fa1401 (patch) | |
tree | 22456ec8840dbf2952229d63d8ad6a97076192c6 /.config/emacs/init.el | |
parent | c579503b13bac147e22952a5c0a42ace264e60b6 (diff) |
switch back to setopt rather than custom
Diffstat (limited to '.config/emacs/init.el')
-rw-r--r-- | .config/emacs/init.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.config/emacs/init.el b/.config/emacs/init.el index cf9bbaf..b36732b 100644 --- a/.config/emacs/init.el +++ b/.config/emacs/init.el @@ -21,8 +21,6 @@ (keymap-global-unset "C-z") (keymap-global-unset "C-x C-z") (keymap-global-set "C-x C-b" #'ibuffer) -(keymap-global-set "C-z =" #'text-scale-increase) -(keymap-global-set "C-z -" #'text-scale-decrease) (keymap-global-set "H-SPC" #'pop-to-mark-command) (setopt warning-minimum-level :error @@ -50,6 +48,7 @@ completion-ignore-case t read-buffer-completion-ignore-case t) (setq-default tab-width 8) +(add-to-list 'default-frame-alist '(alpha . (92 . 92))) (blink-cursor-mode -1) (indent-tabs-mode 0) (fringe-mode '(0 . 0)) |