dotfiles/conf.d/vscode/vscode-settings.json

101 lines
3.3 KiB
JSON
Raw Normal View History

2021-03-03 13:28:06 +00:00
{
"editor.wordWrap": "bounded",
"files.associations": {
"*.asy": "c"
},
"workbench.iconTheme": "material-icon-theme",
"vim.enableNeovim": true,
"vim.neovimPath": "/usr/bin/nvim",
"vim.leader": ";",
"vim.insertModeKeyBindings": [
{
"before": [";", ";"],
"after": ["<Esc>"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "d"],
"after": ["d", "d"]
},
{
"before": ["<leader>", "w"],
"commands": [":w"]
},
{
"before": ["<leader>", "W"],
"commands": [":w! sudo tee %"]
},
{
"before": ["<leader>", "z"],
"commands": [":x"]
},
{
"before": ["<leader>", "q"],
"commands": [":q"]
},
{
"before": ["<leader>", "Q"],
"commands": [":q!"]
}
],
"vim.visualModeKeyBindings": [
{
"before": [";", ";"],
"after": ["<Esc>"]
}
],
"latex-workshop.latex.outDir": "%DIR%/build",
"latex-workshop.message.update.show": false,
"latex-workshop.message.log.show": false,
"latex-workshop.progress.barStyle": "Block Quadrants",
"latex-workshop.progress.runIconType": "Circled",
2021-05-05 20:00:20 +00:00
"latex-workshop.chktex.path": "/usr/bin/chktex",
2021-03-03 13:28:06 +00:00
"latex-workshop.chktex.enabled": true,
"latex-workshop.intellisense.file.base": "both",
"latex-workshop.view.pdf.viewer": "external",
"terminal.integrated.shell.osx": "/bin/zsh",
"vscodeWorkspaceSwitcher.paths": [
2021-05-05 20:00:20 +00:00
"~/Projets"
2021-03-03 13:28:06 +00:00
],
"vscodeWorkspaceSwitcher.showTreeView": false,
"editor.fontSize": 18,
"workbench.colorTheme": "Dark+ Material",
"terminal.integrated.inheritEnv": false,
"vscode-md.options.mode": "wysiwyg",
"vscode-md.options.preview.math.engine": "MathJax",
"vscode-md.theme.code": "vim",
"kite.showWelcomeNotificationOnStartup": false,
"python.languageServer": "Pylance",
"vim.vimrc.path": "$HOME/.config/nvim/init.vim",
2021-03-31 13:15:28 +00:00
"workbench.editor.enablePreview": false,
2021-05-05 20:00:20 +00:00
"tabnine.experimentalAutoImports": true,
"autoDocstring.docstringFormat": "sphinx",
"autoDocstring.startOnNewLine": true,
"latex-workshop.kpsewhich.path": "/usr/bin/kpsewhich",
"latex-workshop.synctex.path": "/usr/bin/synctex",
"latex-workshop.texcount.path": "/usr/bin/texcount",
"latex-workshop.texdoc.path": "/usr/bin/texdoc",
"vscode-neovim.neovimExecutablePaths.linux": "/usr/bin/nvim",
"vscode-neovim.neovimInitVimPaths.linux": "~/.config/nvim/init.vim",
"vscode-neovim.highlightGroups.highlights": {
"Directory": "vim",
"IncSearch": {
"backgroundColor": "theme.editor.findMatchBackground",
"borderColor": "theme.editor.findMatchBorder"
},
"Search": {
"backgroundColor": "theme.editor.findMatchHighlightBackground",
"borderColor": "theme.editor.findMatchHighlightBorder"
},
"Visual": {
"backgroundColor": "theme.editor.selectionBackground"
},
"Conceal": "vim",
"Substitute": "vim"
},
"vscode-neovim.useCtrlKeysForInsertMode": false,
"vscode-neovim.useCtrlKeysForNormalMode": false,
"workbench.settings.openDefaultKeybindings": true,
2021-03-03 13:28:06 +00:00
}