dblume commited on 2023-03-18 19:21:53
Showing 3 changed files, with 5 additions and 3 deletions.
... | ... |
@@ -0,0 +1 @@ |
1 |
+options.disp_menu = False |
... | ... |
@@ -55,9 +55,10 @@ See [config.dlma.com](http://config.dlma.com) for more. |
55 | 55 |
5. .inputrc, for vi mode and a [partially matched command history traversal](http://askubuntu.com/questions/59846/bash-history-search-partial-up-arrow/59855#59855). |
56 | 56 |
6. .editrc, for vi mode and tab word completion in macOS. |
57 | 57 |
7. .ssh/config, for a [fix for CVE-2016-0777](https://news.ycombinator.com/item?id=10901588). (Or upgrade to OpenSSH 7.1p2 released Jan 14, 2016 from http://www.openssh.com.) |
58 |
-8. .ripgreprc, for ripgrep, or [rc](https://github.com/BurntSushi/ripgrep/). |
|
58 |
+8. .ripgreprc, for ripgrep, or [rg](https://github.com/BurntSushi/ripgrep/). |
|
59 | 59 |
9. .gdbinit |
60 |
-10. .config/gitui/key\_bindings.ron, for vim key bindings in [gitui](https://github.com/extrawurst/gitui). |
|
60 |
+10. .visidatarc, to hide [visidata's](https://www.visidata.org/) menu at the top, for the old school UI. |
|
61 |
+11. .config/gitui/key\_bindings.ron, for vim key bindings in [gitui](https://github.com/extrawurst/gitui). |
|
61 | 62 |
|
62 | 63 |
#### Optional manual steps for fresh setups |
63 | 64 |
|
... | ... |
@@ -5,7 +5,7 @@ declare -r SCRIPT_NAME=$(basename "$BASH_SOURCE") |
5 | 5 |
declare -r backup_dir=$HOME/backup_of_dotfiles_$(date "+%Y-%m-%d_%H%M%S") |
6 | 6 |
declare -a dotfiles=(".bashrc" ".bash_profile" ".vimrc" ".editrc" ".gitconfig" |
7 | 7 |
".gitignore" ".inputrc" ".tmux.conf" ".ssh/config" ".ripgreprc" |
8 |
- ".gdbinit" ".config/gitui/key_bindings.ron") |
|
8 |
+ ".gdbinit" ".config/gitui/key_bindings.ron" ".visidatarc") |
|
9 | 9 |
declare -i DRY_RUN=0 |
10 | 10 |
|
11 | 11 |
## exit the shell (with status 2) after printing the message |
12 | 12 |