This commit is contained in:
Andrey Parhomenko 2024-10-03 02:38:07 +05:00
parent a1d280d28c
commit d1f944683b
4 changed files with 36 additions and 3 deletions

View file

@ -121,6 +121,7 @@ fi
# Golang. # Golang.
export GOPATH="$APP/go" export GOPATH="$APP/go"
export GOBIN="$BIN" export GOBIN="$BIN"
export PATH="/usr/local/go/bin:$PATH"
export PATH="$PATH:$GOBIN" export PATH="$PATH:$GOBIN"
# CLI. # CLI.

View file

@ -121,7 +121,7 @@ seta "cl_eventchase_death" "0"
"cl_forwardspeed" "360" "cl_forwardspeed" "360"
seta "cl_freeze" "0" seta "cl_freeze" "0"
seta "cl_magical_hax" "" seta "cl_magical_hax" ""
seta "cl_matchcount" "518" seta "cl_matchcount" "521"
"cl_movement_track_canjump" "1" "cl_movement_track_canjump" "1"
seta "cl_nocarry" "0" seta "cl_nocarry" "0"
seta "cl_nohats" "0" seta "cl_nohats" "0"
@ -129,11 +129,12 @@ seta "cl_noride" "0"
seta "cl_particles_newvortexbeam" "0" seta "cl_particles_newvortexbeam" "0"
"cl_particles_quality" "0.4" "cl_particles_quality" "0.4"
seta "cl_race_checkpoint_splits_console" "1" seta "cl_race_checkpoint_splits_console" "1"
seta "cl_race_checkpoint_splits_hud" "1"
seta "cl_radio" "1" seta "cl_radio" "1"
"cl_sidespeed" "360" "cl_sidespeed" "360"
"cl_smoothviewheight" "0" "cl_smoothviewheight" "0"
seta "cl_spawn_point_particles" "0" seta "cl_spawn_point_particles" "0"
seta "cl_startcount" "123" seta "cl_startcount" "124"
"cl_upspeed" "360" "cl_upspeed" "360"
seta "cl_vaporizerbeam" "0" seta "cl_vaporizerbeam" "0"
seta "cl_vaporizerbeam_minping" "160" seta "cl_vaporizerbeam_minping" "160"
@ -145,7 +146,7 @@ seta "cl_zoomspeed" "-1"
"con_chat" "10" "con_chat" "10"
"con_chatrect" "1" "con_chatrect" "1"
"con_chatrect_x" "0.012812" "con_chatrect_x" "0.012812"
"con_chatrect_y" "0.808333" "con_chatrect_y" "0.705000"
"con_chatwidth" "0.454377" "con_chatwidth" "0.454377"
"crosshair" "33" "crosshair" "33"
seta "crosshair_alpha" "1" seta "crosshair_alpha" "1"

25
zed/settings.json Normal file
View file

@ -0,0 +1,25 @@
// Zed settings
//
// For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed
//
// To see all of Zed's default settings without changing your
// custom settings, run `zed: open default settings` from the
// command palette
{
"assistant": {
"default_model": {
"provider": "ollama",
"model": "codellama:latest"
},
"version": "2"
},
"vim_mode": true,
"ui_font_size": 16,
"buffer_font_size": 16,
"theme": {
"mode": "system",
"light": "Andromeda",
"dark": "One Dark"
}
}

6
zed/tasks.json Normal file
View file

@ -0,0 +1,6 @@
[
{
"label": "echo current file's path",
"command": "echo $ZED_FILE"
}
]