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 <wpcarro@gmail.com>
This commit is contained in:
parent
87981e7afd
commit
c1e381eecc
90 changed files with 76 additions and 280 deletions
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
;; Author: William Carroll <wpcarro@gmail.com>
|
||||
;; 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))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue