Overview
Comment: | config.fish: Disable cursor blinking
For whatever reason, something sets fish_cursor_unknown (and no other |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
0a734afdeab0d57b8d7443333baa4d26 |
User & Date: | js 2020-05-09 13:10:27 |
Context
2020-05-21
| ||
16:03 | tmux: Keep current directory on c/"/% check-in: 9ad2395279 user: js tags: trunk | |
2020-05-09
| ||
13:10 | config.fish: Disable cursor blinking check-in: 0a734afdea user: js tags: trunk | |
2020-03-01
| ||
11:55 | fish: Switch to hybrid bindings check-in: 421abe3f32 user: js tags: trunk | |
Changes
Changes to fish/config.fish.
1 2 3 4 5 6 7 8 9 10 | set -g fish_greeting set -g fish_key_bindings hybrid_bindings set -g fish_escape_delay_ms 300 set -g fish_color_autosuggestion 303030 set -g fish_color_command 205cb3 set -g fish_color_comment 6600cc set -g fish_color_cwd 209060 set -g fish_color_end 730099 set -g fish_color_host 176945 | > | 1 2 3 4 5 6 7 8 9 10 11 | set -g fish_greeting set -g fish_key_bindings hybrid_bindings set -g fish_escape_delay_ms 300 set -g fish_cursor_unknown block set -g fish_color_autosuggestion 303030 set -g fish_color_command 205cb3 set -g fish_color_comment 6600cc set -g fish_color_cwd 209060 set -g fish_color_end 730099 set -g fish_color_host 176945 |
︙ | ︙ |