diff --git a/dot/file/profile b/dot/file/profile index 5396a6e..8e7a96c 100755 --- a/dot/file/profile +++ b/dot/file/profile @@ -121,6 +121,7 @@ fi # Golang. export GOPATH="$APP/go" export GOBIN="$BIN" + export PATH="/usr/local/go/bin:$PATH" export PATH="$PATH:$GOBIN" # CLI. diff --git a/dot/file/xonotic/data/config.cfg b/dot/file/xonotic/data/config.cfg index 5c0652c..eef1857 100644 --- a/dot/file/xonotic/data/config.cfg +++ b/dot/file/xonotic/data/config.cfg @@ -121,7 +121,7 @@ seta "cl_eventchase_death" "0" "cl_forwardspeed" "360" seta "cl_freeze" "0" seta "cl_magical_hax" "" -seta "cl_matchcount" "518" +seta "cl_matchcount" "521" "cl_movement_track_canjump" "1" seta "cl_nocarry" "0" seta "cl_nohats" "0" @@ -129,11 +129,12 @@ seta "cl_noride" "0" seta "cl_particles_newvortexbeam" "0" "cl_particles_quality" "0.4" seta "cl_race_checkpoint_splits_console" "1" +seta "cl_race_checkpoint_splits_hud" "1" seta "cl_radio" "1" "cl_sidespeed" "360" "cl_smoothviewheight" "0" seta "cl_spawn_point_particles" "0" -seta "cl_startcount" "123" +seta "cl_startcount" "124" "cl_upspeed" "360" seta "cl_vaporizerbeam" "0" seta "cl_vaporizerbeam_minping" "160" @@ -145,7 +146,7 @@ seta "cl_zoomspeed" "-1" "con_chat" "10" "con_chatrect" "1" "con_chatrect_x" "0.012812" -"con_chatrect_y" "0.808333" +"con_chatrect_y" "0.705000" "con_chatwidth" "0.454377" "crosshair" "33" seta "crosshair_alpha" "1" diff --git a/zed/settings.json b/zed/settings.json new file mode 100644 index 0000000..60441ea --- /dev/null +++ b/zed/settings.json @@ -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" + } +} diff --git a/zed/tasks.json b/zed/tasks.json new file mode 100644 index 0000000..8558e92 --- /dev/null +++ b/zed/tasks.json @@ -0,0 +1,6 @@ +[ + { + "label": "echo current file's path", + "command": "echo $ZED_FILE" + } +]