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