Compare commits

..

No commits in common. "bd6197adc7b10084197672596190238fa4cf0bd4" and "828b3d3736af36edb42eeac86ed894aae8edf693" have entirely different histories.

View file

@ -145,7 +145,7 @@ let light_theme = {
# The default config record. This is where much of your global configuration is setup. # The default config record. This is where much of your global configuration is setup.
$env.config = { $env.config = {
show_banner: false # true or false to enable or disable the welcome banner at startup show_banner: true # true or false to enable or disable the welcome banner at startup
ls: { ls: {
use_ls_colors: true # use the LS_COLORS environment variable to colorize output use_ls_colors: true # use the LS_COLORS environment variable to colorize output
@ -236,8 +236,7 @@ $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: (if ((version | get minor) >= 94) { 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
@ -265,7 +264,6 @@ $env.config = {
# 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
} }
} 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. 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.