From: martin f. krafft <madduck@madduck.net>
Date: Sat, 3 Feb 2018 07:53:45 +0000 (+1300)
Subject: change umask to 0007
X-Git-Url: https://git.madduck.net/etc/zsh.git/commitdiff_plain/8d489398188d499ca2bc01f25a2f4d2ef31f950a?hp=b0b97fc4ff5979996658d86faf08000478fa45ce

change umask to 0007
---

diff --git a/.zsh/zprofile/10-umask b/.zsh/zprofile/10-umask
index ced69c6..756d3bb 100644
--- a/.zsh/zprofile/10-umask
+++ b/.zsh/zprofile/10-umask
@@ -1,5 +1,5 @@
 #
-# Defines a basic, restrictive umask
+# Defines a basic, restrictive yet usable umask
 #
 # Copyright © 1994–2017 martin f. krafft <madduck@madduck.net>
 # Released under the terms of the Artistic Licence 2.0
@@ -7,6 +7,6 @@
 # Source repository: http://git.madduck.net/v/etc/zsh.git
 #
 
-umask 0077
+umask 0007
 
 # vim:ft=zsh