You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/mud/utils.py
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -39,9 +39,10 @@ def configure() -> None:
39
39
settings.config['mud']['run_table'] =str(ask('Do you want to see command execution progress in table view? This will limit output content.'))
40
40
settings.config['mud']['run_async'] =str(ask('Do you want to run commands simultaneously for multiple repositories?'))
41
41
settings.config['mud']['nerd_fonts'] =str(ask(f'Do you want to use {BOLD}nerd-fonts{RESET}?'))
42
-
settings.config['mud']['show_borders'] =str(ask(f'Do you want to see borders in table view?'))
43
-
settings.config['mud']['collapse_paths'] =str(ask(f'Do you want to collapse paths, such as directory paths and branches? (ex. {BOLD}feature/name{RESET} -> {BOLD}f/name{RESET}'))
44
42
settings.config['mud']['display_absolute_paths'] =str(ask(f'Do you want to display absolute paths for directories? (ex. {BOLD}~/Documents/repo{RESET} -> {BOLD}/home/user/Documents/repo{RESET}'))
43
+
settings.config['mud']['display_header'] =str(ask(f'Do you want to display headers in a table view {BOLD}nerd-fonts{RESET}?'))
44
+
settings.config['mud']['display_borders'] =str(ask(f'Do you want to see borders in table view?'))
45
+
settings.config['mud']['collapse_paths'] =str(ask(f'Do you want to collapse paths, such as directory paths and branches? (ex. {BOLD}feature/name{RESET} -> {BOLD}f/name{RESET}'))
0 commit comments