Compare commits

...

2 commits

Author SHA1 Message Date
Michael Zhang bd6197adc7 check version for breaking change 2024-05-29 18:25:39 -05:00
Michael Zhang 6371708441 hide banner 2024-05-29 18:24:23 -05:00

View file

@ -145,7 +145,7 @@ let light_theme = {
# The default config record. This is where much of your global configuration is setup.
$env.config = {
show_banner: true # true or false to enable or disable the welcome banner at startup
show_banner: false # true or false to enable or disable the welcome banner at startup
ls: {
use_ls_colors: true # use the LS_COLORS environment variable to colorize output
@ -236,7 +236,8 @@ $env.config = {
use_ansi_coloring: true
bracketed_paste: true # enable bracketed paste, currently useless on windows
edit_mode: emacs # emacs, vi
shell_integration: {
shell_integration: (if ((version | get minor) >= 94) {
{
# 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
# osc7 is a way to communicate the path to the terminal, this is helpful for spawning new tabs in the same directory
@ -264,6 +265,7 @@ $env.config = {
# reset_application_mode is escape \x1b[?1l and was added to help ssh work better
reset_application_mode: true
}
} else { 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.
use_kitty_protocol: false # enables keyboard enhancement protocol implemented by kitty console, only if your terminal support this.