Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
VSCode Config
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Binet Réseau
VSCode Config
Commits
8f9b0d47
Commit
8f9b0d47
authored
1 year ago
by
Thibaut DE SAIVRE
Browse files
Options
Downloads
Patches
Plain Diff
add some settings
parent
46c011a7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.vscode/settings.json
+69
-1
69 additions, 1 deletion
.vscode/settings.json
with
69 additions
and
1 deletion
.vscode/settings.json
+
69
−
1
View file @
8f9b0d47
{
{
}
//
Generic
settings
:
\ No newline at end of file
"editor.formatOnSave"
:
true
,
//
Format
files
on
save
"formatFiles.runOrganizeImports"
:
true
,
//
Sort
imports
when
formatting
"editor.codeActionsOnSave"
:
{
//
Organize
imports
on
save
"source.organizeImports"
:
true
},
"editor.inlineSuggest.enabled"
:
true
,
//
Instantly
show
suggestions
"editor.minimap.enabled"
:
false
,
//
Hide
minimap
(along
scroll
bar)
"editor.mouseWheelZoom"
:
true
,
//
Generic
extension
settings
"todo-tree.highlights.useColourScheme"
:
true
,
"code-runner.saveFileBeforeRun"
:
true
,
"github.copilot.enable"
:
{
"*"
:
true
},
"workbench.editorAssociations"
:
{
"*.csv"
:
"gc-excelviewer-csv-editor"
//
Open
CSV
files
with
the
Excel
extension
},
//
C++
"clangd.path"
:
"/home/thibaut/.config/Code/User/globalStorage/llvm-vs-code-extensions.vscode-clangd/install/15.0.6/clangd_15.0.6/bin/clangd"
,
"clang-format.style"
:
"{ BasedOnStyle: LLVM, UseTab: Never, IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Allman, AllowShortIfStatementsOnASingleLine: true, IndentCaseLabels: false, ColumnLimit: 0, AccessModifierOffset: -4, NamespaceIndentation: All, FixNamespaceComments: false }"
,
"C_Cpp.intelliSenseEngine"
:
"disabled"
,
"[cpp]"
:
{
"editor.defaultFormatter"
:
"xaver.clang-format"
},
"[c]"
:
{
"editor.defaultFormatter"
:
"xaver.clang-format"
},
//
Web
dev
"javascript.updateImportsOnFileMove.enabled"
:
"always"
,
//
Automatically
update
imports
when
moving
a
file
"[javascript]"
:
{
"editor.defaultFormatter"
:
"esbenp.prettier-vscode"
},
"[css]"
:
{
"editor.defaultFormatter"
:
"esbenp.prettier-vscode"
},
"[jsonc]"
:
{
"editor.defaultFormatter"
:
"esbenp.prettier-vscode"
},
"[json]"
:
{
"editor.defaultFormatter"
:
"esbenp.prettier-vscode"
},
//
Java
"[java]"
:
{
"editor.defaultFormatter"
:
"redhat.java"
},
//
Latex
"[latex]"
:
{
"editor.defaultFormatter"
:
"James-Yu.latex-workshop"
},
"latex-workshop.message.badbox.show"
:
false
,
//
Allow
using
\\
for
newlines
,
without
warnings
//
Python
"python.analysis.typeCheckingMode"
:
"basic"
,
//
or
"strict"
:
use
stricter
python
type
checking
//
Python
Jupyter
Notebooks
"jupyter.interactiveWindow.textEditor.executeSelection"
:
true
,
"notebook.formatOnSave.enabled"
:
true
,
//
Optional
:
use
a
formatter
on
save
(slow)
//
Rust
"rust-analyzer.check.command"
:
"clippy"
//
Use
clippy
for
better
warnings
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment