Skip to content

Commit 45579dd

Browse files
committed
feat: add cursor settings
1 parent 301e21a commit 45579dd

2 files changed

Lines changed: 21 additions & 1 deletion

File tree

install-pkg.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ mv bin/protoc /opt/go/bin/ && /opt/go/bin/protoc --version
122122
mv include /opt/go/
123123

124124
# Install python uv
125-
export UV_VERSION=0.9.11
125+
export UV_VERSION=0.9.21
126126
wget -q https://github.com/astral-sh/uv/releases/download/${UV_VERSION}/uv-x86_64-unknown-linux-gnu.tar.gz
127127
tar -xf uv-x86_64-unknown-linux-gnu.tar.gz
128128
mv uv-x86_64-unknown-linux-gnu/* /usr/local/bin
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"workbench.colorTheme": "Monokai",
3+
"editor.fontFamily": "DejaVu Sans Mono",
4+
"editor.fontSize": 14,
5+
"editor.formatOnSave": true,
6+
"editor.bracketPairColorization.enabled": false,
7+
"editor.autoClosingBrackets": "always",
8+
"editor.tokenColorCustomizations": {
9+
"[Monokai]": {
10+
"textMateRules": [
11+
{
12+
"scope": "entity.name.type, entity.name.class, entity.name.namespace, entity.name.scope-resolution",
13+
"settings": {
14+
"fontStyle": ""
15+
}
16+
}
17+
]
18+
}
19+
},
20+
}

0 commit comments

Comments
 (0)