This commit is contained in:
Michael Zhang 2024-05-29 16:06:03 -05:00
parent 1b98d4cfe9
commit 828b3d3736

View file

@ -236,35 +236,34 @@ $env.config = {
use_ansi_coloring: true use_ansi_coloring: true
bracketed_paste: true # enable bracketed paste, currently useless on windows bracketed_paste: true # enable bracketed paste, currently useless on windows
edit_mode: emacs # emacs, vi edit_mode: emacs # emacs, vi
shell_integration: true shell_integration: {
# { # osc2 abbreviates the path if in the home_dir, sets the tab/window title, shows the running command in the tab/window title
# # osc2 abbreviates the path if in the home_dir, sets the tab/window title, shows the running command in the tab/window title osc2: true
# osc2: true # osc7 is a way to communicate the path to the terminal, this is helpful for spawning new tabs in the same directory
# # osc7 is a way to communicate the path to the terminal, this is helpful for spawning new tabs in the same directory osc7: true
# osc7: true # osc8 is also implemented as the deprecated setting ls.show_clickable_links, it shows clickable links in ls output if your terminal supports it. show_clickable_links is deprecated in favor of osc8
# # osc8 is also implemented as the deprecated setting ls.show_clickable_links, it shows clickable links in ls output if your terminal supports it. show_clickable_links is deprecated in favor of osc8 osc8: true
# osc8: true # osc9_9 is from ConEmu and is starting to get wider support. It's similar to osc7 in that it communicates the path to the terminal
# # osc9_9 is from ConEmu and is starting to get wider support. It's similar to osc7 in that it communicates the path to the terminal osc9_9: false
# osc9_9: false # osc133 is several escapes invented by Final Term which include the supported ones below.
# # osc133 is several escapes invented by Final Term which include the supported ones below. # 133;A - Mark prompt start
# # 133;A - Mark prompt start # 133;B - Mark prompt end
# # 133;B - Mark prompt end # 133;C - Mark pre-execution
# # 133;C - Mark pre-execution # 133;D;exit - Mark execution finished with exit code
# # 133;D;exit - Mark execution finished with exit code # This is used to enable terminals to know where the prompt is, the command is, where the command finishes, and where the output of the command is
# # This is used to enable terminals to know where the prompt is, the command is, where the command finishes, and where the output of the command is osc133: true
# osc133: true # osc633 is closely related to osc133 but only exists in visual studio code (vscode) and supports their shell integration features
# # osc633 is closely related to osc133 but only exists in visual studio code (vscode) and supports their shell integration features # 633;A - Mark prompt start
# # 633;A - Mark prompt start # 633;B - Mark prompt end
# # 633;B - Mark prompt end # 633;C - Mark pre-execution
# # 633;C - Mark pre-execution # 633;D;exit - Mark execution finished with exit code
# # 633;D;exit - Mark execution finished with exit code # 633;E - NOT IMPLEMENTED - Explicitly set the command line with an optional nonce
# # 633;E - NOT IMPLEMENTED - Explicitly set the command line with an optional nonce # 633;P;Cwd=<path> - Mark the current working directory and communicate it to the terminal
# # 633;P;Cwd=<path> - Mark the current working directory and communicate it to the terminal # and also helps with the run recent menu in vscode
# # and also helps with the run recent menu in vscode osc633: true
# osc633: true # reset_application_mode is escape \x1b[?1l and was added to help ssh work better
# # reset_application_mode is escape \x1b[?1l and was added to help ssh work better reset_application_mode: true
# reset_application_mode: true }
# }
render_right_prompt_on_last_line: false # true or false to enable or disable right prompt to be rendered on last line of the prompt. render_right_prompt_on_last_line: false # true or false to enable or disable right prompt to be rendered on last line of the prompt.
use_kitty_protocol: false # enables keyboard enhancement protocol implemented by kitty console, only if your terminal support this. use_kitty_protocol: false # enables keyboard enhancement protocol implemented by kitty console, only if your terminal support this.
@ -896,7 +895,7 @@ $env.config = {
] ]
} }
use ~/.cache/starship/init.nu source ~/.cache/starship/init.nu
source ~/.zoxide.nu source ~/.zoxide.nu
alias ga = git add alias ga = git add