Skip to content

Instantly share code, notes, and snippets.

View Sympho's full-sized avatar
🤘
Rock

Azim Kurt Sympho

🤘
Rock
View GitHub Profile
@Sympho
Sympho / setup.md
Created August 15, 2022 15:10 — forked from akella/setup.md
My Setup
# custom PhpStorm properties
# https://plugins.jetbrains.com/plugin/8246-smooth-scroller
editor.zero.latency.typing=true
idea.true.smooth.scrolling=true
idea.true.smooth.scrolling.interpolation=true
idea.true.smooth.scrolling.interpolation.mouse.wheel=true
idea.true.smooth.scrolling.interpolation.mouse.wheel.delay.min=200
idea.true.smooth.scrolling.interpolation.mouse.wheel.delay.max=400
{
"always-semicolon": true,
"color-case": "lower",
"block-indent": 4,
"color-shorthand": true,
"element-case": "lower",
"eof-newline": true,
"leading-zero": false,
"quotes": "double",
"sort-order-fallback": "abc",
module.exports = {
devServer: {
disableHostCheck: true
}
}
@Sympho
Sympho / keybindings.json
Last active December 8, 2018 15:57
Visual Studio Code Key Bindings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+alt+l",
"command": "editor.action.insertSnippet",
{
// "typescript.check.tscVersion": false,
"php.validate.executablePath": "C:\\OSPanelBasic\\modules\\php\\PHP-7.1-x64\\php.exe",
"window.menuBarVisibility": "default",
"workbench.colorTheme": "Spacegray Ocean Dark",
// "editor.fontFamily": "Input Mono",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.fontSize": 14,
// "editor.ViewWhiteSpace": true,
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#WheelDown::Send {Volume_Down 1}
#WheelUp::Send {Volume_Up 1}
#Down::Send {Volume_Down 1}
#Up::Send {Volume_Up 1}
@Sympho
Sympho / Preferences.sublime-settings
Last active February 21, 2019 09:33
Sublime Text 3 settings (Preferences → Settings)
{
"binary_file_patterns":
[
".svn/",
".git/",
"node_modules/",
"vendor/",
"bower_components/",
"*.jpg",
"*.jpeg",
@Sympho
Sympho / Default (Windows).sublime-keymap
Last active October 25, 2018 20:52
Key bindings for JSX+emmet
[
{
"keys": ["tab"], "command": "expand_abbreviation_by_tab", "context": [
{
"operand": "source.js.jsx",
"operator": "equal",
"match_all": true,
"key": "selector"
},
{
@Sympho
Sympho / gulpfile.js
Last active November 24, 2018 00:59
/*
* gulpfile.js
* npm i --save-dev gulp gulp-sass gulp-sourcemaps gulp-babel babel-core babel-preset-es2015 @babel/core @babel/preset-env browser-sync gulp-autoprefixer
* app/
* ├─ index.html
* ├─ src/
* │ ├─ js/
* │ │ └─ *.js
* │ └─ scss/
* │ └─ *.scss