From 9fae955ebf471a191b34c3d3e2836532067bfe1b Mon Sep 17 00:00:00 2001 From: Rahul Martim Juliato Date: Fri, 18 Oct 2024 17:23:58 -0300 Subject: [PATCH] feat(window): makes divisor symbol continuous between lines --- init.el | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index cdbaf10..2d9a045 100644 --- a/init.el +++ b/init.el @@ -1,6 +1,6 @@ ;;; init.el --- Emacs-Kick --- A feature rich Emacs config for (neo)vi(m)mers -*- lexical-binding: t; -*- ;; Author: Rahul Martim Juliato -;; Version: 0.1.1 +;; Version: 0.1.2 ;; Package-Requires: ((emacs "30.0")) ;; License: GPL-2.0-or-later @@ -218,9 +218,13 @@ (setq custom-file (locate-user-emacs-file "custom-vars.el")) ;; Specify the custom file path. (load custom-file 'noerror 'nomessage) ;; Load the custom file quietly, ignoring errors. + ;; Makes Emacs vertical divisor the symbol │ instead of |. + (set-display-table-slot standard-display-table 'vertical-border (make-glyph-code ?│)) + :init ;; Initialization settings that apply before the package is loaded. (tool-bar-mode -1) ;; Disable the tool bar for a cleaner interface. (menu-bar-mode -1) ;; Disable the menu bar for a more streamlined look. + (when scroll-bar-mode (scroll-bar-mode -1)) ;; Disable the scroll bar if it is active. @@ -230,7 +234,7 @@ (recentf-mode 1) ;; Enable tracking of recently opened files. (savehist-mode 1) ;; Enable saving of command history. (save-place-mode 1) ;; Enable saving the place in files for easier return. - (winner-mode) ;; Enable winner mode to easily undo window configuration changes. + (winner-mode 1) ;; Enable winner mode to easily undo window configuration changes. (xterm-mouse-mode 1) ;; Enable mouse support in terminal mode. (file-name-shadow-mode 1) ;; Enable shadowing of filenames for clarity.