From f53e0c7ef5d848949e78db350444a2a3ac65066d Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Sat, 6 Jan 2024 09:19:39 -0500 Subject: [PATCH] Sync up some more dotfiles. --- .exrc | 2 +- .gitconfig | 7 +++++++ README.md | 17 +++++++++++++++++ 3 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 .gitconfig create mode 100644 README.md diff --git a/.exrc b/.exrc index 7aa4010..12721a1 100644 --- a/.exrc +++ b/.exrc @@ -5,4 +5,4 @@ set tabstop=4 set shiftwidth=4 set showmatch set exrc - +set colorcolumn=72,80 diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..ee6b319 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,7 @@ +# This is Git's per-user configuration file. +[user] +# Please adapt and uncomment the following lines: + name = Jordan Bancino + email = jordan@bancino.net +[push] + autoSetupRemote = yes diff --git a/README.md b/README.md new file mode 100644 index 0000000..e56ea09 --- /dev/null +++ b/README.md @@ -0,0 +1,17 @@ +# Dotfiles + +These are my dotfiles. As you will notice, they are quite simple. Over the +years, I have built up many complex and fancy init scripts for many different +programs, but I've come to realize that sometimes simplicity and defaults are +better. + +The dotfiles here are just the basics—useful aliases and functions that +have stuck around throughout the years. They're minimal, but useful. The main +part of my `.ashrc` is the customized prompt, which supports showing the current +`git` branch. + +My shell init scripts are written in POSIX shell, so they should work on any +shell. As I've hopped from Ubuntu to Arch to OpenBSD to FreeBSD and now to +Alpine, I've used a lot of shells, and I want my init scripst to work on all +of them out of the box. +