diff options
author | Christian Muehlhaeuser <muesli@gmail.com> | 2020-01-14 02:20:21 +0100 |
---|---|---|
committer | Christian Muehlhaeuser <muesli@gmail.com> | 2020-01-14 02:20:33 +0100 |
commit | 5038a7b69fbcf970f930ea73452313fcfc2ef292 (patch) | |
tree | e5f43a352e652349961403e51af36c6709942344 /main.go | |
parent | ce8ca8f27c9cba4c4a9e3083ecb48f0a6d83d674 (diff) |
Use glamour's 'auto' style per default
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -217,6 +217,6 @@ func init() { rootCmd.Version = Version rootCmd.Flags().BoolVarP(&pager, "pager", "p", false, "display with pager") - rootCmd.Flags().StringVarP(&style, "style", "s", "dark", "style name or JSON path") + rootCmd.Flags().StringVarP(&style, "style", "s", "auto", "style name or JSON path") rootCmd.Flags().UintVarP(&width, "width", "w", 100, "word-wrap at width") } |