dotfiles/.config/VSCodium/User/settings.json

79 lines
2.6 KiB
JSON
Raw Normal View History

2021-04-02 19:06:33 +02:00
{
"editor.acceptSuggestionOnEnter": "off",
"editor.accessibilitySupport": "off",
"editor.bracketPairColorization.enabled": true,
"editor.cursorBlinking": "smooth",
2023-02-19 11:49:23 +01:00
"editor.cursorSmoothCaretAnimation": "on",
2022-05-02 13:26:24 +02:00
"editor.fontFamily": "Iosevka Nerd Font",
"editor.fontLigatures": false,
"editor.suggestSelection": "first",
"editor.wordWrap": "on",
"editor.wrappingIndent": "deepIndent",
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
//Ref: https://code.visualstudio.com/docs/languages/identifiers#_known-language-identifiers
"files.associations": {
"*.bu": "yaml",
"*.ign": "json",
},
"gitlab.instanceUrl": "https://git.histalek.de",
"glualint.activeLanguages": [
"glua",
"lua"
],
"go.toolsManagement.autoUpdate": true,
"latex.server.autoDownload": true,
"latex-workshop.bind.enter.key": false,
"latex-workshop.chktex.enabled": true,
"latex-workshop.latex.clean.subfolder.enabled": true,
"latex-workshop.message.update.show": false,
"latex-workshop.view.pdf.viewer": "tab",
"markdownlint.config": {
"MD024": {
"allow_different_nesting": true
2021-04-02 19:06:33 +02:00
},
"MD033": {
"allowed_elements": [
"h1",
"img"
]
},
},
"oneDarkPro.bold": true,
"oneDarkPro.editorTheme": "One Dark Pro Darker",
"redhat.telemetry.enabled": false,
"svg.preview.mode": "svg",
"terminal.integrated.fontFamily": "'monospace','PowerlineSymbols'",
"terminal.integrated.persistentSessionReviveProcess": "never",
2022-05-02 13:26:24 +02:00
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "/usr/bin/flatpak-spawn",
"args": ["--host", "--env=TERM=xterm-256color", "zsh"]
}
},
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"window.title": "${activeEditorShort}${separator}${rootPath}",
"workbench.colorTheme": "One Dark Pro Darker",
"workbench.startupEditor": "newUntitledFile",
"workbench.preferredDarkColorTheme": "One Dark Pro Darker",
"workbench.preferredHighContrastColorTheme": "One Dark Pro Darker",
"yaml.schemas": {
"https://github.com/Nemric/Butane-Schemas/releases/latest/download/butane-v1_4_0.json": ["*.bu"]
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[latex]": {
"editor.defaultFormatter": "James-Yu.latex-workshop"
},
"[yaml]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
2022-05-02 13:26:24 +02:00
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 16,
2021-04-02 19:06:33 +02:00
}