This file contains 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
unbind C-b | |
set-option -g prefix C-x | |
bind-key C-x send-prefix | |
# panes | |
set -g pane-border-style fg=colour238 | |
set -g pane-active-border-style fg=colour191 | |
## Status bar design | |
# status line |
This file contains 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
const ReactInjection = require('react-dom/lib/ReactInjection') | |
const TapEventPlugin = require('react-dom/lib/TapEventPlugin') | |
ReactInjection.EventPluginHub.injectEventPluginsByName({ | |
TapEventPlugin, | |
}) |
This file contains 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": "ctrl+alt+k", | |
"command": "editor.debug.action.showDebugHover", | |
"when": "editorTextFocus && inDebugMode" | |
}, | |
{ | |
"key": "ctrl+k ctrl+i", | |
"command": "-editor.debug.action.showDebugHover", | |
"when": "editorTextFocus && inDebugMode" |
This file contains 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
<?php | |
/** | |
* Authentication adapter for Lark OAuth2. | |
*/ | |
final class PhutilLarkAuthAdapter extends PhutilOAuthAuthAdapter { | |
private $appAccessToken; | |
public function getAdapterType() { | |
return 'Lark'; |