-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvscode-settings.json
More file actions
29 lines (29 loc) · 1.04 KB
/
vscode-settings.json
File metadata and controls
29 lines (29 loc) · 1.04 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
// Place your settings in this file to overwrite the default settings
{
"editor.fontSize": 13,
"editor.fontFamily": "Hack, regular, monospace",
"editor.lineNumbers": "relative",
"editor.cursorBlinking": "solid",
"editor.minimap.enabled": false,
"search.useIgnoreFilesByDefault": true,
"vim.disableAnnoyingNeovimMessage": true,
"vim.useSystemClipboard": true,
"vim.enableNeovim": true,
"vim.textwidth": 100,
"rust.rustup": {
"toolchain": "stable-x86_64-pc-windows-msvc",
"nightlyToolchain": "nightly-x86_64-pc-windows-msvc"
},
"rust.mode": "rls",
"rust.rls": {
"env": {
"RUST_SRC_PATH": "C:\\Users\\bhbat\\.rustup\\toolchains\\nightly-x86_64-pc-windows-msvc\\lib\\rustlib\\src\\rust\\src\\"
},
"useRustfmt": true
},
"workbench.colorTheme": "Solarized Dark",
"idris.executablePath": "C:\\Users\\bhbat\\Downloads\\idris\\idris.exe",
"idris.suggestMode": "replCompletion",
"window.zoomLevel": 0,
"workbench.activityBar.visible": true
}