Skip to content

Instantly share code, notes, and snippets.

@michaelHL
Last active June 9, 2017 03:17
Show Gist options
  • Save michaelHL/096950ada505e2fe934f61b348f3d6f9 to your computer and use it in GitHub Desktop.
Save michaelHL/096950ada505e2fe934f61b348f3d6f9 to your computer and use it in GitHub Desktop.
vscodesettings
{
"workbench.iconTheme": "material-icon-theme",
"editor.rulers": [
80
],
"editor.fontSize": 19.6,
"editor.fontFamily": "Inconsolata, 'Microsoft Yahei Mono', Consolas, 'Courier New', monospace",
"editor.lineHeight": 24,
"editor.minimap.enabled": true,
"editor.cursorBlinking": "solid",
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
// clang
"clang.diagnostic.enable": true,
"clang.executable": "E:\\LLVM\\x86\\bin\\clang.exe",
"clang.cflags": [
"-std=c99",
"-IE:\\MinGW\\i686-5.4.0-release-posix-dwarf-rt_v5-rev0\\mingw32\\i686-w64-mingw32\\include",
"-IE:\\MinGW\\i686-5.4.0-release-posix-dwarf-rt_v5-rev0\\mingw32\\include",
"-IE:\\MinGW\\i686-5.4.0-release-posix-dwarf-rt_v5-rev0\\mingw32\\lib\\gcc\\i686-w64-mingw32\\5.4.0\\include"
],
"clang.cxxflags": [
"-std=c++11",
"-IE:\\MinGW\\i686-5.4.0-release-posix-dwarf-rt_v5-rev0\\mingw32\\i686-w64-mingw32\\include",
"-IE:\\MinGW\\i686-5.4.0-release-posix-dwarf-rt_v5-rev0\\mingw32\\i686-w64-mingw32\\include\\c++",
"-IE:\\MinGW\\i686-5.4.0-release-posix-dwarf-rt_v5-rev0\\mingw32\\include",
"-IE:\\MinGW\\i686-5.4.0-release-posix-dwarf-rt_v5-rev0\\mingw32\\lib\\gcc\\i686-w64-mingw32\\5.4.0\\include"
],
// R
"r.rterm.windows": "E:\\R\\bin\\x64\\R.exe",
// Astyle
"astyle.executable": "E:\\UtilityPrograms\\AStyle\\bin\\AStyle.exe",
"astyle.astylerc": "F:\\WorkingDirectory\\Configuration\\VSCode\\c_astyle.astylerc",
// vim
"vim.disableAnnoyingNeovimMessage": true,
"vim.disableAnnoyingGcMessage": true,
"vim.useSystemClipboard": true,
"vim.hlsearch": true,
"vim.leader": " ",
"vim.easymotion": true,
"vim.easymotionMarkerFontFamily": "Microsoft Yahei Mono",
"vim.easymotionMarkerFontSize": "18",
"vim.easymotionMarkerHeight": 17,
"vim.easymotionMarkerWidthPerChar": 11,
"vim.easymotionMarkerBackgroundColor": "#000000",
"vim.easymotionMarkerForegroundColorOneChar": "#ffffff",
"vim.easymotionMarkerForegroundColorTwoChar": "#ffffff",
"vim.easymotionMarkerYOffset": 13,
"vim.handleKeys": {
"<C-s>": false,
"<C-w>": false,
"<C-f>": false,
"<C-j>": false,
"<C-c>": false,
"<C-n>": false,
"<C-k>": false
},
// LaTeX Workshop
"latex-workshop.latex.toolchain": [
{
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"%DOC%"
]
}
],
// run code
"code-runner.executorMap": {
"c": "cd /d $dir && gcc -std=c99 -Wall $fileName -o $fileNameWithoutExt.exe && $dir$fileNameWithoutExt.exe",
"cpp": "cd $dir && g++ $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"php": "php",
"python": "python",
"bat": "cmd /c",
"vbscript": "cscript //Nologo",
"r": "Rscript",
"ahk": "autohotkey"
},
"code-runner.cwd": "F:\\WorkingDirectory\\Temp",
"code-runner.saveFileBeforeRun": true,
"code-runner.runInTerminal": false,
"code-runner.preserveFocus": true,
"code-runner.showExecutionMessage": true,
"code-runner.clearPreviousOutput": true,
// zen mode
"zenMode.fullScreen": false,
"zenMode.restore": true,
// project manager configuration
"projectManager.projectsLocation": "F:\\WorkingDirectory\\Configuration\\VSCode",
// integrated terminal
"terminal.integrated.fontSize": 16,
"terminal.integrated.shell.windows": "C:\\Windows\\Sysnative\\cmd.exe",
// windows
"window.zoomLevel": -1.2,
"window.menuBarVisibility": "toggle",
"workbench.colorTheme": "Material Theme Darker",
"workbench.sideBar.location": "left"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment