feat(window): makes divisor symbol continuous between lines

This commit is contained in:
Rahul Martim Juliato
2024-10-18 17:23:58 -03:00
parent 853fd6a578
commit 9fae955ebf

View File

@@ -1,6 +1,6 @@
;;; init.el --- Emacs-Kick --- A feature rich Emacs config for (neo)vi(m)mers -*- lexical-binding: t; -*- ;;; init.el --- Emacs-Kick --- A feature rich Emacs config for (neo)vi(m)mers -*- lexical-binding: t; -*-
;; Author: Rahul Martim Juliato ;; Author: Rahul Martim Juliato
;; Version: 0.1.1 ;; Version: 0.1.2
;; Package-Requires: ((emacs "30.0")) ;; Package-Requires: ((emacs "30.0"))
;; License: GPL-2.0-or-later ;; 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. (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. (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. :init ;; Initialization settings that apply before the package is loaded.
(tool-bar-mode -1) ;; Disable the tool bar for a cleaner interface. (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. (menu-bar-mode -1) ;; Disable the menu bar for a more streamlined look.
(when scroll-bar-mode (when scroll-bar-mode
(scroll-bar-mode -1)) ;; Disable the scroll bar if it is active. (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. (recentf-mode 1) ;; Enable tracking of recently opened files.
(savehist-mode 1) ;; Enable saving of command history. (savehist-mode 1) ;; Enable saving of command history.
(save-place-mode 1) ;; Enable saving the place in files for easier return. (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. (xterm-mouse-mode 1) ;; Enable mouse support in terminal mode.
(file-name-shadow-mode 1) ;; Enable shadowing of filenames for clarity. (file-name-shadow-mode 1) ;; Enable shadowing of filenames for clarity.