This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"key": "alt+up", | |
"command": "cursorMove", | |
"when": "textInputFocus", | |
"args": { | |
"to": "up", | |
"by": "line", | |
"value": 2 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* (c) 2024 Pierre-Henry Soria. | |
*/ | |
import { StyleSheet, View, ViewStyle, DimensionValue } from 'react-native'; | |
type LineBreakProps = { | |
width?: DimensionValue; | |
color?: string; | |
style?: ViewStyle; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" |
OlderNewer