vscode-conf/User/settings.json

125 lines
3.9 KiB
JSON

{
"editor.fontFamily": "'FiraCode Nerd Font'",
"vscode-neovim.neovimExecutablePaths.linux": "/usr/bin/nvim",
"terminal.integrated.profiles.linux": {
"bash": {
"path": "bash",
"icon": "terminal-bash"
},
"zsh": {
"path": "zsh"
},
"tmux": {
"path": "tmux",
"icon": "terminal-tmux"
},
"pwsh": {
"path": "pwsh",
"icon": "terminal-powershell"
}
},
"editor.minimap.enabled": false,
"prettier.tabWidth": 4,
"editor.wordWrapColumn": 120,
"vscode-neovim.neovimInitVimPaths.linux": "/home/cscherr/.config/nvim/mini.lua",
"workbench.startupEditor": "none",
"todo-tree.general.statusBar": "total",
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"PERF",
"SECURITY",
"WARN",
"NOTE",
"TEST",
"[ ]",
"[x]",
"[X]",
"- [ ]"
],
"git.autofetch": true,
"cSpell.language": "en,de-DE,de",
"terminal.integrated.rightClickBehavior": "nothing",
"terminal.integrated.sendKeybindingsToShell": true,
"[python]": {
"editor.formatOnType": true
},
"vim.foldfix": true,
"markdown-preview-enhanced.previewTheme": "atom-material.css",
"markdown.preview.breaks": true,
"markdown.suggest.paths.includeWorkspaceHeaderCompletions": "onSingleOrDoubleHash",
"markdown.updateLinksOnFileMove.enabled": "prompt",
"markdown.validate.enabled": true,
"markdown.extension.preview.autoShowPreviewToSide": true,
"markdown.extension.print.theme": "dark",
"markdown.extension.theming.decoration.renderLink": true,
"markdown-preview-enhanced.automaticallyShowPreviewOfMarkdownBeingEdited": true,
"markdown-preview-enhanced.enableExtendedTableSyntax": true,
"markdown-preview-enhanced.enableHTML5Embed": true,
"markdown-preview-enhanced.enableTypographer": true,
"markdown-preview-enhanced.frontMatterRenderingOption": "code block",
"window.menuBarVisibility": "compact",
"todo-tree.tree.showCountsInTree": true,
"todo-tree.general.showActivityBarBadge": true,
"[markdown]": {
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"diffEditor.ignoreTrimWhitespace": false,
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
},
"cSpell.fixSpellingWithRenameProvider": true,
"cSpell.advanced.feature.useReferenceProviderWithRename": true,
"cSpell.advanced.feature.useReferenceProviderRemove": "/^#+\\s/",
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
},
"extensions.experimental.affinity": {
"asvetliakov.vscode-neovim": 1
},
"workbench.colorTheme": "Oceanic Next",
"accessibility.signals.terminalBell": {
"sound": "on"
},
"terminal.integrated.enableVisualBell": true,
"vscode-neovim.logLevel": "warn",
"vscode-neovim.logOutputToConsole": true,
"rust-analyzer.check.command": "clippy",
"workbench.sideBar.location": "right",
"editor.fontSize": 16,
"editor.lineNumbers": "relative",
"workbench.colorCustomizations": {
"editorCursor.foreground": "#ffc600"
},
"vscode-neovim.ctrlKeysForInsertMode": [
"a",
"c",
"d",
"h",
"j",
"o",
"r",
"t",
"u",
"w",
"right",
"up",
"left",
"down",
"k",
"b",
"l"
],
"terminal.integrated.commandsToSkipShell": [
"workbench.action.terminal.toggleTerminal"
],
"terminal.integrated.allowChords": false,
"editor.codeLensFontFamily": "'FiraCode Nerd Font'",
"editor.fontLigatures": true,
"git.openRepositoryInParentFolders": "never"
}