From 074182ab1884f11832aae2709c374ea8682e0ba3 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 22 Nov 2021 06:18:36 +0000 Subject: (Emacs)+turn off borders Using fringe widths, turn off borders in Emacs. Truly freeing experience. --- Emacs/.config/emacs/config.org | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'Emacs/.config/emacs/config.org') diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 0c4f6ab..787ca47 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -106,6 +106,19 @@ which does a better job of indicating where the cursor is on screen. :config (blink-cursor-mode 0)) #+end_src + +After turning off borders in my window manager, I tried turning off +the borders for Emacs. Incredible, must be done. +#+begin_src emacs-lisp +(use-package fringe + :after dashboard + :straight nil + :init + (setq left-fringe-width 0 + right-fringe-width 0) + :config + (fringe-mode 'no-fringes)) +#+end_src ** Path Setting the path variable cos it can get annoying sometimes #+begin_src emacs-lisp -- cgit v1.2.3-13-gbd6f