---
title: "Sqlite pretty print"
date: 2019-06-19
description: How to pretty print your Sqlite output
tags:
  - SQLite
---

## The solution
In `~/.sqliterc` add the following :
{{< highlight sh >}}
.mode column
.headers on
.separator ROW "\n"
.nullvalue NULL
{{< /highlight >}}