From 988ae8a324de3dceb097717cc70d97bebd83d9b1 Mon Sep 17 00:00:00 2001 From: Bert Peters Date: Tue, 31 May 2016 10:11:23 +0200 Subject: [PATCH] Add configuration files for sqlite. --- install.sh | 6 ++++++ sqlite/.sqliterc | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 sqlite/.sqliterc diff --git a/install.sh b/install.sh index 3a39d34..61bc493 100755 --- a/install.sh +++ b/install.sh @@ -58,6 +58,12 @@ then stow -t $HOME zsh fi +if commandAvailable "sqlite3" +then + echo "Installing configuration files for sqlite." + stow -t $HOME sqlite +fi + # Install all XDG compatible packages echo "Installing remaining packages" stow -t $HOME pacman git diff --git a/sqlite/.sqliterc b/sqlite/.sqliterc new file mode 100644 index 0000000..ba0d022 --- /dev/null +++ b/sqlite/.sqliterc @@ -0,0 +1,3 @@ +.mode column +.header on +.nullvalue NULL