From c1e381eeccaa7246ac40e5a58ae5202ead0dfd5f Mon Sep 17 00:00:00 2001 From: William Carroll Date: Thu, 23 Dec 2021 18:30:31 -0500 Subject: refactor(wpcarro): Remove briefcase references TL;DR: - prefer WPCARRO env-var to BRIEFCASE - remove repository URLs from Emacs libraries - prefer tvl-depot-path where possible - reduce the scope of constants.el - prune (some not all) stale CI configuration Change-Id: I21e9130402502ec6fa2fc4b46753c890069be62d Reviewed-on: https://cl.tvl.fyi/c/depot/+/4545 Tested-by: BuildkiteCI Reviewed-by: wpcarro --- users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el') diff --git a/users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el b/users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el index 40b073746d..79df8745f6 100644 --- a/users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el +++ b/users/wpcarro/emacs/.emacs.d/wpc/wpc-ui.el @@ -2,7 +2,6 @@ ;; Author: William Carroll ;; Version: 0.0.1 -;; URL: https://git.wpcarro.dev/wpcarro/briefcase ;; Package-Requires: ((emacs "24")) ;;; Commentary: @@ -15,6 +14,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (require 'constants) +(require 'tvl) (require 'prelude) (require 'al) (require 'fonts) @@ -71,7 +71,7 @@ (tool-bar-mode -1) ;; set default buffer for Emacs -(setq initial-buffer-choice constants-current-project) +(setq initial-buffer-choice tvl-depot-path) ;; premium Emacs themes (use-package doom-themes @@ -131,13 +131,13 @@ ;; reduce noisiness of auto-revert-mode (setq auto-revert-verbose nil) -;; highlight lines that are over `constants-fill-column' characters long +;; highlight lines that are over 80 characters long (use-package whitespace :config ;; TODO: This should change depending on the language and project. For ;; example, Google Java projects prefer 100 character width instead of 80 ;; character width. - (setq whitespace-line-column constants-fill-column) + (setq whitespace-line-column 80) (setq whitespace-style '(face lines-tail)) (add-hook 'prog-mode-hook #'whitespace-mode)) -- cgit 1.4.1