From f4b5e5c6ead2718253c70f7e0a6ed9562aea8cf1 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 22 Mar 2022 11:39:53 -0400 Subject: Source ~/.profile.local if it exists --- home/.profile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'home') diff --git a/home/.profile b/home/.profile index ed925b65..7d4ba822 100644 --- a/home/.profile +++ b/home/.profile @@ -23,4 +23,6 @@ export GIT_PAGER="diff-highlight | $PAGER" test -e /usr/share/mk/sys.mk || export CFLAGS=-O test -d /usr/home && cd +test -f ~/.profile.local && . ~/.profile.local + export ENV=~/.shrc -- cgit 1.4.1 owmsg' value='1'/> dontfiles
summary refs log tree commit diff
path: root/bin/freecell.c (unfollow)
Commit message (Collapse)Author
2022-06-03Set line number on File linesJune McEnroe
2022-06-03Stop polling stdin after EOFJune McEnroe
2022-06-02Set TABSIZE=4June McEnroe
Absolutely indiscriminately.
2022-06-02Do basic match highlightingJune McEnroe
2022-06-02Clean up parsing a littleJune McEnroe
2022-06-02Don't duplicate path stringJune McEnroe
2022-06-02Use stderr instead of /dev/tty, realloc buffer if lines too longJune McEnroe
For some reason I haven't been able to figure out, trying to poll /dev/tty returns POLLNVAL (and this was using 100% CPU looping), but using stderr instead works fine.
2022-06-02Add initial working version of qfJune McEnroe
2022-05-29Set prompt for okshJune McEnroe