mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2025-09-13 19:03:40 +02:00
feat: add code-server settings (#1)
Reviewed-on: gists/dotfiles#1 Co-authored-by: Victor Westerlund <victor.vesterlund@gmail.com> Co-committed-by: Victor Westerlund <victor.vesterlund@gmail.com>
This commit is contained in:
parent
b85e546c1c
commit
2b3411dcb2
2 changed files with 16 additions and 0 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -1,5 +1,6 @@
|
||||||
**
|
**
|
||||||
!.config/
|
!.config/
|
||||||
|
!.local/
|
||||||
|
|
||||||
# Include configs
|
# Include configs
|
||||||
!.nanorc
|
!.nanorc
|
||||||
|
@ -8,6 +9,10 @@
|
||||||
!.config/git/
|
!.config/git/
|
||||||
!.config/git/**
|
!.config/git/**
|
||||||
!.bash_aliases
|
!.bash_aliases
|
||||||
|
!.local/share/
|
||||||
|
!.local/share/code-server/
|
||||||
|
!.local/share/code-server/User/
|
||||||
|
!.local/share/code-server/User/settings.json
|
||||||
|
|
||||||
# Include this file
|
# Include this file
|
||||||
!.gitignore
|
!.gitignore
|
||||||
|
|
11
.local/share/code-server/User/settings.json
Normal file
11
.local/share/code-server/User/settings.json
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
"workbench.colorTheme": "Default Dark Modern",
|
||||||
|
"keyboard.layout": "0000041D",
|
||||||
|
"editor.bracketPairColorization.enabled": false,
|
||||||
|
"git.openRepositoryInParentFolders": "never",
|
||||||
|
"editor.stickyScroll.enabled": false,
|
||||||
|
"html.format.indentHandlebars": true,
|
||||||
|
"editor.insertSpaces": false,
|
||||||
|
"workbench.editor.closeEmptyGroups": false,
|
||||||
|
"editor.hover.hidingDelay": 0
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue