From 1cff2a854578ea900e4156fd034ee614610dc1a7 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Tue, 28 Oct 2025 08:37:30 +0100 Subject: [PATCH] feat(code-server): set integrated terminal cursor to line (#58) Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/58 --- .local/share/code-server/User/settings.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.local/share/code-server/User/settings.json b/.local/share/code-server/User/settings.json index cc12e13..a3f9a12 100644 --- a/.local/share/code-server/User/settings.json +++ b/.local/share/code-server/User/settings.json @@ -14,5 +14,7 @@ "workbench.startupEditor": "none", "workbench.activityBar.location": "top", "workbench.panel.showLabels": false, - "terminal.integrated.copyOnSelection": true + "terminal.integrated.copyOnSelection": true, + "terminal.integrated.cursorStyle": "line", + "terminal.integrated.cursorStyleInactive": "line" } \ No newline at end of file