# HG changeset patch # User Richard Westhaver # Date 1721697410 14400 # Node ID ba99e803354d4b15287f8ca5fe5e3ab7edd2f1ca # Parent 5c83bc96dbbfb4fb311bb9c90dfdf5afd73c1ad3 emacs config diff -r 5c83bc96dbbf -r ba99e803354d .emacs.d/operator.el --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.emacs.d/operator.el Mon Jul 22 21:16:50 2024 -0400 @@ -0,0 +1,29 @@ +;;; operator.el --- Operator Emacs Config -*- lexical-binding: t; -*- + +;; Copyright (C) 2024 Richard Westhaver + +;; Author: Richard Westhaver +;; Keywords: + +;; This program is free software; you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. + +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. + +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + +;;; Commentary: + +;; + +;;; Code: + +(setopt default-theme 'modus-vivendi-tritanopia) +(when (linux-p) (setq dired-listing-switches "-alsh")) +;;; operator.el ends here