73580329f5bf
Merge.
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Wed, 12 Feb 2020 23:10:41 -0500 |
parents | a20cd97bae84 (current diff) a6e1eedddb20 (diff) |
children | 0fc8cb89809b 425b45329fbd |
branches/tags | (none) |
files |
Changes
--- a/bin/bootstrap.sh Wed Feb 12 23:10:37 2020 -0500 +++ b/bin/bootstrap.sh Wed Feb 12 23:10:41 2020 -0500 @@ -50,6 +50,7 @@ ensure_link "src/dotfiles/psqlrc" ".psqlrc" ensure_link "src/dotfiles/sbclrc" ".sbclrc" ensure_link "src/dotfiles/shellcheckrc" ".shellcheckrc" +ensure_link "src/dotfiles/sqliterc" ".sqliterc" ensure_link "src/dotfiles/stumpwmrc" ".stumpwmrc" ensure_link "src/dotfiles/tmux/tmux.conf" ".tmux.conf" ensure_link "src/dotfiles/vim" ".vim"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin/sqlite Wed Feb 12 23:10:41 2020 -0500 @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +rlwrap -m'$$$$' \ + -a____ \ + --multi-line-ext .sql \ + --only-cook '^(sqlite| *\.\.\.)> ' \ + -p'1;32' \ + --histsize 1000 \ + --history-filename "$HOME/.rlwrap/sqlite_history" \ + sqlite3 "$@" +