-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvscode-settings.json
More file actions
121 lines (112 loc) · 3.3 KB
/
Copy pathvscode-settings.json
File metadata and controls
121 lines (112 loc) · 3.3 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"breadcrumbs.enabled": true,
"editor.fontSize": 14,
"editor.minimap.enabled": true,
"editor.minimap.showSlider": "always",
"editor.occurrencesHighlight": false,
"editor.renderWhitespace": "boundary",
"editor.renderControlCharacters": true,
"search.exclude": {
"**/build": true,
"**/node_modules": true,
"**/bower_components": true
},
"editor.fontFamily": "Source Code Pro",
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "'SourceCodePro+Powerline+Awesome Regular'",
// IntelliSense Settings
"editor.tabCompletion": "on",
"editor.acceptSuggestionOnEnter": "off",
"editor.wordBasedSuggestions": true,
"editor.suggest.localityBonus": true,
"editor.suggestSelection": "recentlyUsedByPrefix",
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorCustomizations": {
"sideBar.border": "#bbc0c5",
"sideBar.foreground": "#8BADC1",
"panel.border": "#bbc0c5",
"editor.selectionBackground": "#3971c5",
"editor.selectionHighlightBackground": "#39bcc5"
},
"files.associations": {
"*.p9k": "shellscript"
},
// Extension Settings
"C_Cpp.default.browse.path": [
"${workspaceFolder}"
],
"cmake.configureOnOpen": false,
"cmake.installPrefix": "~/usr/",
"cmake.parallelJobs": 4,
"cmake.saveBeforeBuild": false,
"bracket-pair-colorizer-2.forceIterationColorCycle": false,
"bracket-pair-colorizer-2.colors": [
"Gold",
"Orchid",
"LightSkyBlue",
"LightGreen",
"LightRed"
],
"latex-workshop.view.pdf.viewer": "tab",
"markdown.extension.toc.unorderedList.marker": "*",
"vim.easymotion": true,
"vim.sneak": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.leader": ",",
"vim.easymotionMarkerBackgroundColor": "white",
"vim.easymotionMarkerFontSize": "16",
"vim.easymotionMarkerForegroundColorOneChar": "black",
"vim.easymotionMarkerForegroundColorTwoChar": "black",
"vim.easymotionMarkerYOffset": 0,
"vim.easymotionMarkerHeight": 20,
"vim.easymotionMarkerWidthPerChar": 14,
"vim.easymotionMarkerFontWeight": "bold",
"vim.easymotionMarkerFontFamily": "Source Code Pro",
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [":"],
"commands": [
"workbench.action.showCommands",
]
},
{
"before": ["<leader>", "m"],
"commands": [
"bookmarks.toggle"
]
},
{
"before": ["<leader>", "b"],
"commands": [
"bookmarks.list"
]
}
],
"vim.visualModeKeyBindingsNonRecursive": [
{
"before": [
">"
],
"commands": [
"editor.action.indentLines"
]
},
{
"before": [
"<"
],
"commands": [
"editor.action.outdentLines"
]
},
]
}