fix: zed settings

This commit is contained in:
2025-11-04 21:54:41 +01:00
parent 33dc9175ed
commit effce2b63f
3 changed files with 10 additions and 14 deletions

View File

@@ -225,7 +225,9 @@
"Universal LSP": {
"command": "/home/valknar/.local/bin/universal-lsp",
"args": ["acp"],
"env": {}
"env": {
"CLAUDE_TIMEOUT_MS": "180000"
}
}
}
}

11
.zshrc
View File

@@ -31,6 +31,13 @@ if [ -d "$HOME/node_modules/.bin" ]; then
export PATH="$PATH:$HOME/node_modules/.bin"
fi
# Source .env file early to export environment variables
if [ -f "$HOME/.env" ] ; then
set -a
source "$HOME/.env"
set +a
fi
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
@@ -54,10 +61,6 @@ if [ -s "$HOME/.cargo/env" ] ; then
. "$HOME/.cargo/env"
fi
if [ -s "$HOME/.env" ] ; then
export $(cat "$HOME/.env" | xargs)
fi
if command -v oh-my-posh 2>&1 >/dev/null; then
eval "$(! oh-my-posh init zsh --config=~/worker.omp.json)"
fi

View File

@@ -1,9 +0,0 @@
module.exports = {
apps: [
{
name: "language-server",
script:
"./node_modules/@github/copilot-language-server/dist/language-server.js",
},
],
};