Skip to content

Instantly share code, notes, and snippets.

@kristianmitk
kristianmitk / c_cpp_properties.json
Created April 17, 2020 11:41
VSCode C/C++ Extension config for the conan package manager
{
"configurations": [
{
"name": "Linux",
"cppStandard": "c++17",
"cStandard": "c11",
"defines": [],
"includePath": [
"/usr/include",
"/usr/local/include",
@kristianmitk
kristianmitk / settings.json
Last active April 17, 2020 11:43
custom vscode settings
{
"vim.statusBarColorControl": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
">"
@kristianmitk
kristianmitk / keybindings.json
Last active May 7, 2019 08:20
VSCode key bindings
[
{
"key": "cmd+k cmd+b",
"command": "workbench.action.toggleActivityBarVisibility"
},
{ "key": "cmd+k cmd+0", "command": "editor.foldAll" },
{
"key": "cmd+0 cmd+K",
"command": "editor.unfoldAll"
},