dotfiles/home/apps/vscode/settings.json

215 lines
6.5 KiB
JSON
Raw Normal View History

2023-11-02 17:09:35 +01:00
// vim:ft=jsonc
{
2023-05-02 23:24:50 +02:00
"catppuccin.accentColor": "pink",
"catppuccin.customUIColors": {
"all": {
"statusBar.foreground": "accent",
"statusBar.noFolderForeground": "accent"
}
},
2023-11-05 08:33:36 +01:00
"catppuccin.extraBordersEnabled": true,
2023-05-02 23:24:50 +02:00
"debug.onTaskErrors": "debugAnyway",
"diffEditor.ignoreTrimWhitespace": false,
2023-11-02 17:09:35 +01:00
"diffEditor.hideUnchangedRegions.enabled": true,
2023-05-02 23:24:50 +02:00
"editor.cursorSmoothCaretAnimation": "on",
2023-11-02 17:09:35 +01:00
"editor.smoothScrolling": true,
"terminal.integrated.smoothScrolling": true,
"terminal.integrated.fontSize": 14,
2023-11-05 08:33:36 +01:00
"editor.fontFamily": "Cascadia Code, Symbols Nerd Font, monospace",
2023-11-02 17:09:35 +01:00
"editor.fontLigatures": "'calt', 'ss01'",
2023-07-08 18:15:07 +02:00
"editor.fontSize": 15,
"editor.formatOnSave": true,
2023-11-02 17:09:35 +01:00
"editor.guides.bracketPairs": true,
"editor.inlayHints.enabled": "onUnlessPressed",
"editor.inlayHints.fontSize": 8,
2023-05-02 23:24:50 +02:00
"editor.inlayHints.padding": true,
"editor.inlineSuggest.enabled": true,
"editor.lineNumbers": "relative",
2023-04-11 15:05:57 +02:00
"editor.minimap.enabled": false,
2023-11-02 17:09:35 +01:00
"editor.minimap.renderCharacters": false,
"extensions.autoUpdate": false,
2023-05-02 23:24:50 +02:00
"extensions.ignoreRecommendations": true,
"git.autofetch": true,
2023-11-02 17:09:35 +01:00
"git.openRepositoryInParentFolders": "never",
2023-05-02 23:24:50 +02:00
"ltex.additionalRules.enablePickyRules": true,
"ltex.additionalRules.motherTongue": "de-AT",
"markdown.preview.fontFamily": "IBM Plex Sans, sans-serif",
"search.useGlobalIgnoreFiles": true,
"search.useParentIgnoreFiles": true,
"typescript.inlayHints.parameterNames.enabled": "all",
"update.mode": "none",
2023-11-02 17:09:35 +01:00
"vs-kubernetes": {
"vs-kubernetes.crd-code-completion": "enabled"
},
"window.autoDetectColorScheme": true,
"window.commandCenter": false,
"window.titleBarStyle": "custom",
"workbench.colorTheme": "Catppuccin Mocha",
"workbench.iconTheme": "catppuccin-mocha",
"workbench.preferredDarkColorTheme": "Catppuccin Mocha",
"workbench.preferredLightColorTheme": "Catppuccin Latte",
"workbench.productIconTheme": "icons-carbon",
// telemetry settings
"redhat.telemetry.enabled": false,
"telemetry.telemetryLevel": "off",
"workbench.enableExperiments": false,
"workbench.settings.enableNaturalLanguageSearch": false,
// language-specific settings
"d.alwaysShowDubStatusButtons": true,
"d.servedReleaseChannel": "beta",
"d.stdlibPath": "auto",
"gopls": {
"ui.semanticTokens": true
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[less]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff"
},
"rubyLsp.rubyVersionManager": "none",
"[ruby]": {
"editor.defaultFormatter": "Shopify.ruby-lsp",
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.tabSize": 2,
"editor.insertSpaces": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"editor.rulers": [120],
"editor.semanticHighlighting.enabled": true
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
// vim mode
"vim.camelCaseMotion.enable": true,
2023-05-02 23:24:50 +02:00
"vim.handleKeys": {
"<C-a>": true,
"<C-d>": true,
2023-07-08 18:15:07 +02:00
"<C-u>": true,
"<C-v>": true,
2023-05-02 23:24:50 +02:00
"<C-w>": true,
2023-07-08 18:15:07 +02:00
"<C-x>": true
2023-05-02 23:24:50 +02:00
},
2023-07-08 18:15:07 +02:00
"vim.highlightedyank.color": "rgba(128, 128, 128, 0.8)",
"vim.highlightedyank.enable": true,
"vim.hlsearch": true,
"vim.incsearch": true,
"vim.insertModeKeyBindings": [],
2023-05-02 23:24:50 +02:00
"vim.leader": "<space>",
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": ["r", "h"],
"commands": ["git.revertSelectedRanges"]
2023-11-02 17:09:35 +01:00
},
{
"before": ["<leader>", "y"],
"commands": ["editor.action.clipboardCopyAction"]
},
{
"before": ["<leader>", "p"],
"commands": ["editor.action.clipboardPasteAction"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["g", "r"],
"commands": ["editor.action.goToReferences"]
},
{
2023-07-08 18:15:07 +02:00
"before": ["K"],
"commands": ["editor.action.showHover"]
},
{
2023-07-08 18:15:07 +02:00
"before": ["<leader>", "f", "d"],
"commands": ["workbench.action.quickOpen"]
},
{
2023-07-08 18:15:07 +02:00
"before": ["<leader>", "f", "t"],
"commands": ["workbench.action.selectTheme"]
},
{
2023-07-08 18:15:07 +02:00
"before": ["<leader>", "n", "f"],
"commands": ["editor.action.formatDocument"]
},
2023-03-24 02:52:41 +01:00
{
2023-07-08 18:15:07 +02:00
"before": ["[", "d"],
2023-11-02 17:09:35 +01:00
"commands": ["editor.action.marker.prev"]
2023-03-24 02:52:41 +01:00
},
{
2023-07-08 18:15:07 +02:00
"before": ["]", "d"],
2023-11-02 17:09:35 +01:00
"commands": ["editor.action.marker.next"]
2023-03-24 02:52:41 +01:00
},
{
2023-07-08 18:15:07 +02:00
"before": ["[", "c"],
"commands": ["workbench.action.editor.previousChange"]
2023-03-24 02:52:41 +01:00
},
{
2023-07-08 18:15:07 +02:00
"before": ["]", "c"],
"commands": ["workbench.action.editor.nextChange"]
2023-03-24 02:52:41 +01:00
},
{
2023-11-02 17:09:35 +01:00
"before": ["K"],
"commands": ["editor.action.showHover"]
},
{
2023-11-02 17:09:35 +01:00
"before": ["<C-h>"],
"commands": ["workbench.action.focusLeftGroup"]
},
{
2023-11-02 17:09:35 +01:00
"before": ["<C-j>"],
"commands": ["workbench.action.focusBelowGroup"]
},
{
2023-11-02 17:09:35 +01:00
"before": ["<C-k>"],
"commands": ["workbench.action.focusAboveGroup"]
},
{
2023-11-02 17:09:35 +01:00
"before": ["<C-l>"],
"commands": ["workbench.action.focusRightGroup"]
},
{
"before": ["<C-W>", "\\"],
"commands": ["workbench.action.splitEditorRight"]
},
{
"before": ["<C-W>", "-"],
"commands": ["workbench.action.splitEditorDown"]
}
],
2023-07-08 18:15:07 +02:00
"vim.replaceWithRegister": true,
"vim.smartRelativeLine": true,
2023-11-02 17:09:35 +01:00
// vscord
"vscord.status.buttons.button1.git.active.enabled": true,
"vscord.status.idle.check": true,
"vscord.status.idle.timeout": 180,
"vscord.status.image.large.idle.key": "https://cdn.discordapp.com/emojis/936610646181695498.png",
"vscord.status.image.large.idle.text": "eepy",
"vscord.status.image.large.notInFile.key": "https://cdn.discordapp.com/emojis/743724645018107964.png",
"vscord.status.image.large.notInFile.text": "comfy",
"vscord.status.image.small.debugging.key": "https://cdn.discordapp.com/emojis/743723396692443206.png",
"vscord.status.image.small.debugging.text": "thonking",
"vscord.status.image.small.editing.key": "https://cdn.discordapp.com/emojis/886512498772168755.gif",
"vscord.status.image.small.editing.text": "hecking",
"vscord.status.image.small.viewing.key": "https://cdn.discordapp.com/emojis/903437275881439285.png",
"vscord.status.image.small.viewing.text": "looking"
2023-07-08 18:15:07 +02:00
}