This commit is contained in:
Tao Tien 2025-02-27 00:23:32 -08:00
parent 83621c55db
commit 4b71f83dd2
3 changed files with 27 additions and 78 deletions

View file

@ -164,7 +164,7 @@ $env.config = {
buffer_editor: null # command that will be used to edit the current line buffer with ctrl+o, if unset fallback to $env.EDITOR and $env.VISUAL
use_ansi_coloring: true
bracketed_paste: true # enable bracketed paste, currently useless on windows
edit_mode: vi # emacs, vi
edit_mode: emacs # emacs, vi
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: true

View file

@ -31,7 +31,7 @@ alias jp = jj git push
alias js = jj status
alias jw = jj workspace update-stale
def jm [] {
jj bookmark set main
def jm [...rest] {
jj bookmark set main ...$rest
jj git push
}