diff --git a/home/emacs/modules/custom-ui-config.el b/home/emacs/modules/custom-ui-config.el index 139242c0..d94378cd 100644 --- a/home/emacs/modules/custom-ui-config.el +++ b/home/emacs/modules/custom-ui-config.el @@ -8,16 +8,20 @@ ;;; Code: (setq use-dialog-box nil - display-line-numbers 'relative - fill-column 80) + fill-column 80 + truncate-lines nil + truncate-partial-width-windows nil) (defun my/set-frame-alpha () (set-frame-parameter nil 'alpha-background 80)) +(tab-bar-mode -1) +(menu-bar-mode -1) (tool-bar-mode -1) (scroll-bar-mode -1) (add-to-list 'default-frame-alist '(font . "FiraCode Nerd Font-12")) +(global-display-line-numbers-mode 'relative) (global-prettify-symbols-mode +1) -(global-word-wrap-whitespace-mode +1) +(global-visual-line-mode +1) (set-frame-parameter nil 'alpha-background 80) (add-hook 'server-after-make-frame-hook (lambda () (set-frame-parameter nil 'alpha-background 80)))