Skip to content

Instantly share code, notes, and snippets.

View pH-7's full-sized avatar
:octocat:
πŸ’‘Creative Engineer πŸš€ Enjoying Learning New Exciting Things! πŸ˜‹ =>My Way of Life 🏝

β™š PH⑦ de Soriaβ„’β™› pH-7

:octocat:
πŸ’‘Creative Engineer πŸš€ Enjoying Learning New Exciting Things! πŸ˜‹ =>My Way of Life 🏝
View GitHub Profile
@pH-7
pH-7 / keybindings.json
Last active August 22, 2024 07:30
Productivity Add Custom VS Code Keybindings. Move Cursor Up/Down by 2 Lines
[
{
"key": "alt+up",
"command": "cursorMove",
"when": "textInputFocus",
"args": {
"to": "up",
"by": "line",
"value": 2
}
@pH-7
pH-7 / LineBreak.tsx
Last active November 10, 2024 21:45
React Native Line Break component - Add easily line breaks in your React Native app
/**
* (c) 2024 Pierre-Henry Soria.
*/
import { StyleSheet, View, ViewStyle, DimensionValue } from 'react-native';
type LineBreakProps = {
width?: DimensionValue;
color?: string;
style?: ViewStyle;
};
@pH-7
pH-7 / .zprofile
Last active January 25, 2025 06:14
.zprofile useful aliases - (not maintained anymore) New updates are now happening in https://github.com/pH-7/dotfiles/
# Alias
alias vi="nvim"
alias c="clear"
alias push="git push origin head"
alias pull="git pull"
alias amend="git amend"
alias gi="git"
alias g="git"
alias gp="git push"