diff options
author | Tyler E. Cone <tyler.cone91@gmail.com> | 2025-07-27 03:35:30 +0000 |
---|---|---|
committer | Tyler E. Cone <tyler.cone91@gmail.com> | 2025-07-27 03:35:30 +0000 |
commit | c1e21843a067e084e256aef1790461f93337f86d (patch) | |
tree | 0469d6438607746fdc1d96b7bc90fae9d92f0435 /.config/thefuck |
Initial Commit: Tracking global dotenv files for my default arch build.
Includes python virtualenvs, git configs, zsh configs, and thefuck
settings so far.
Diffstat (limited to '.config/thefuck')
-rw-r--r-- | .config/thefuck/settings.py | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.config/thefuck/settings.py b/.config/thefuck/settings.py new file mode 100644 index 0000000..8478f6d --- /dev/null +++ b/.config/thefuck/settings.py @@ -0,0 +1,26 @@ +# The Fuck settings file +# +# The rules are defined as in the example bellow: +# +# rules = ['cd_parent', 'git_push', 'python_command', 'sudo'] +# +# The default values are as follows. Uncomment and change to fit your needs. +# See https://github.com/nvbn/thefuck#settings for more information. +# + +# rules = [<const: All rules enabled>] +# exclude_rules = [] +# wait_command = 3 +# require_confirmation = True +# no_colors = False +# debug = False +# priority = {} +# history_limit = None +# alter_history = True +# wait_slow_command = 15 +# slow_commands = ['lein', 'react-native', 'gradle', './gradlew', 'vagrant'] +# repeat = False +# instant_mode = False +# num_close_matches = 3 +# env = {'LC_ALL': 'C', 'LANG': 'C', 'GIT_TRACE': '1'} +# excluded_search_path_prefixes = [] |