Skip to content

Instantly share code, notes, and snippets.

@iamsonal
Last active June 13, 2021 22:27
Show Gist options
  • Save iamsonal/b15e649e9059cd2d1d31a96a50591b6f to your computer and use it in GitHub Desktop.
Save iamsonal/b15e649e9059cd2d1d31a96a50591b6f to your computer and use it in GitHub Desktop.
Mac Setup ZSH
sudo spctl --master-disable
https://github.com/ohmyzsh/ohmyzsh
How to Install Zsh/ zsh-autosuggestions/ oh-my-zsh in Linux
https://varunmanik1.medium.com/how-to-install-zsh-zsh-autosuggestions-oh-my-zsh-in-linux-65fa01cc038d
# custom WebStorm VM options
-Xms128m
-Xmx2048m
-XX:ReservedCodeCacheSize=512m
-XX:+UseG1GC
-XX:SoftRefLRUPolicyMSPerMB=50
-XX:CICompilerCount=2
-XX:+HeapDumpOnOutOfMemoryError
-XX:-OmitStackTraceInFastThrow
-ea
-Dsun.io.useCanonCaches=false
-Djdk.http.auth.tunneling.disabledSchemes=""
-Djdk.attach.allowAttachSelf=true
-Djdk.module.illegalAccess.silent=true
-Dkotlinx.coroutines.debug=off
-XX:ErrorFile=$USER_HOME/java_error_in_webstorm_%p.log
-XX:HeapDumpPath=$USER_HOME/java_error_in_webstorm.hprof
-javaagent:/Users/sonal/.BetterIntelliJ/BetterIntelliJ-1.20.jar
{
"workbench.iconTheme": "vscode-icons",
"vsicons.dontShowNewVersionMessage": true,
"workbench.colorTheme": "Mariana Pro (Cool)",
"editor.fontSize": 14,
"terminal.integrated.fontSize": 14,
"workbench.tree.indent": 20,
"explorer.confirmDelete": false,
"git.autofetch": true,
"emojisense.languages": {
"markdown": true,
"plaintext": {
"markupCompletionsEnabled": false,
"emojiDecoratorsEnabled": false
},
"scminput": true,
"git-commit": true,
"html": true,
"javascript": true
},
"cSpell.enableFiletypes": [
"apex"
],
}
// Settings in here override those in "Default/Preferences.sublime-settings",
// and are overridden in turn by syntax-specific settings.
{
"auto_complete_delay": 5,
"auto_complete_selector": "source, text",
"create_window_at_startup": false,
"folder_exclude_patterns":
[
".svn",
".git",
".DS_Store",
"__pycache__",
"*.pyc",
"*.pyo",
"*.exe",
"*.dll",
"*.obj",
"*.o",
"*.a",
"*.lib",
"*.so",
"*.dylib",
"*.ncb",
"*.sdf",
"*.suo",
"*.pdb",
"*.idb",
"*.psd"
],
"font_size": 13,
"ignored_packages":
[
"Markdown",
"Vintage",
],
"open_files_in_new_window": false,
"rulers":
[
80
],
"translate_tabs_to_spaces": true,
"word_wrap": true,
"theme": "auto",
"color_scheme": "Packages/Color Scheme - Default/Mariana.sublime-color-scheme",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment