-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.json
More file actions
44 lines (44 loc) · 1.7 KB
/
settings.json
File metadata and controls
44 lines (44 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnType": true
},
"editor.accessibilitySupport": "off",
"editor.fontFamily": "Ewka Nerd Font",
"editor.fontLigatures": true,
"editor.fontSize": 16,
"editor.inlineSuggest.enabled": true,
"editor.minimap.enabled": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "on",
"extensions.ignoreRecommendations": false,
"git.autofetch": true,
"git.confirmSync": false,
"git.openRepositoryInParentFolders": "always",
"jupyter.askForKernelRestart": false,
"jupyter.interactiveWindow.creationMode": "perFile",
"jupyter.interactiveWindow.textEditor.executeSelection": true,
"python.analysis.completeFunctionParens": true,
"python.analysis.typeCheckingMode": "basic",
"python.defaultInterpreterPath": "/opt/homebrew/Caskroom/mambaforge/base/bin/python",
"python.formatting.provider": "none",
"python.languageServer": "Pylance",
"r.alwaysUseActiveTerminal": true,
"r.bracketedPaste": true,
"r.rterm.mac": "$(brew --prefix)/Caskroom/mambaforge/base/envs/${workspaceFolderBasename}/bin/radian",
"r.sessionWatcher": true,
"security.workspace.trust.untrustedFiles": "open",
"tabnine.experimentalAutoImports": true,
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
},
"terminal.integrated.fontFamily": "Ewka Nerd Font",
"terminal.integrated.fontSize": 16,
"terminal.integrated.inheritEnv": false,
"terminal.integrated.macOptionIsMeta": true,
"vscode-neovim.neovimExecutablePaths.darwin": "/opt/homebrew/bin/nvim",
"vscode-neovim.neovimInitVimPaths.darwin": "$HOME/.config/nvim/init.vim",
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
}
}