update zed config
This commit is contained in:
@@ -16,7 +16,7 @@
|
||||
},
|
||||
"features": {
|
||||
"copilot": false,
|
||||
"inline_completion_provider": "none"
|
||||
"edit_prediction_provider": "none"
|
||||
},
|
||||
"show_completions_on_input": true,
|
||||
"assistant": {
|
||||
@@ -29,7 +29,7 @@
|
||||
"show_parameter_hints": true,
|
||||
"show_other_hints": true
|
||||
},
|
||||
"show_inline_completions": true,
|
||||
"show_edit_predictions": true,
|
||||
"ui_font_size": 16,
|
||||
"buffer_font_size": 16,
|
||||
"theme": {
|
||||
@@ -41,5 +41,12 @@
|
||||
"terminal": {
|
||||
"font_family": "JetBrainsMono Nerd Font Mono"
|
||||
},
|
||||
"hard_tabs": true
|
||||
"hard_tabs": true,
|
||||
"lsp": {
|
||||
"omnisharp": {
|
||||
"binary": {
|
||||
"path": "/usr/local/bin/dotnet"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,3 +5,12 @@ alias pip="python3 -m pip"
|
||||
alias border="sh border"
|
||||
alias lvim="~/.local/bin/lvim"
|
||||
eval "$(starship init zsh)"
|
||||
|
||||
function yy() {
|
||||
local tmp="$(mktemp -t "yazi-cwd.XXXXXX")"
|
||||
yazi "$@" --cwd-file="$tmp"
|
||||
if cwd="$(cat -- "$tmp")" && [ -n "$cwd" ] && [ "$cwd" != "$PWD" ]; then
|
||||
cd -- "$cwd"
|
||||
fi
|
||||
rm -f -- "$tmp"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user