Skip to content

Instantly share code, notes, and snippets.

@arkenidar
Created July 13, 2024 09:40
Show Gist options
  • Save arkenidar/e1e1637b2b59954256bd696e9c7680f6 to your computer and use it in GitHub Desktop.
Save arkenidar/e1e1637b2b59954256bd696e9c7680f6 to your computer and use it in GitHub Desktop.
{ // wget https://arkenidar.com/screens/software/my-setup/settings.json
// Git for source control
"git.enabled": true,
"git.path": [
"C:/msys64/usr/bin/git.exe"
],
// vsCode terminals
"terminal.explorerKind": "integrated",
"terminal.external.windowsExec": "C:/msys64/usr/bin/bash.exe",
"terminal.integrated.profiles.windows": {
"bash.exe profile": {
"path": "C:/msys64/usr/bin/bash.exe"
}
},
"terminal.integrated.defaultProfile.windows": "bash.exe profile",
// extension for CMake: ms-vscode.cmake-tools
"cmake.generator": "MinGW Makefiles",
"cmake.configureOnOpen": true,
"cmake.options.statusBarVisibility": "visible",
"cmake.debugConfig": {
"cwd": "${workspaceFolder}"
},
// extension for LuaJIT: tomblind.local-lua-debugger-vscode
"lua-local.interpreter": "c:/msys64/mingw64/bin/luajit.exe",
// extension for PHP: bmewburn.vscode-intelephense-client
"php.validate.executablePath": "c:/php/php.exe",
// extension for SSH: ms-vscode-remote.remote-ssh
"remote.SSH.configFile": "C:/msys64/home/dario/.ssh/config",
"remote.SSH.remotePlatform": {
"arkenidar.com": "linux"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment