This complex modification changes HJKL to Vim style arrow keys when "D" is held down. Please adjust Karabiner Elements' simultaneous_threshold_milliseconds
to between 150-500ms for this to work correctly. I'm currently using a value of 250.
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
{ | |
"Actions": "Actions", | |
"Details": "Details", | |
"If you did not request a password reset, no further action is required.": "If you did not request a password reset, no further action is required.", | |
"Reset Password": "Reset Password", | |
"Sorry! You are not authorized to perform this action.": "Sorry! You are not authorized to perform this action.", | |
"You are receiving this email because we received a password reset request for your account.": "You are receiving this email because we received a password reset request for your account.", | |
"Error": "Error", | |
"Confirm Password": "Confirm Password", | |
"We have emailed your password reset link!": "We have emailed your password reset link!", |
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
import Arweave from "arweave"; | |
import { | |
bundleAndSignData, | |
createData, | |
ArweaveSigner, | |
DataItem, | |
} from "arbundles"; | |
import { JWKInterface } from "arweave/node/lib/wallet"; | |
import fs from "fs"; |
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 | |
use PhpCsFixer\Config; | |
use PhpCsFixer\Finder; | |
$rules = [ | |
'phpdoc_indent' => true, | |
'binary_operator_spaces' => [ | |
'operators' => ['=>' => null] | |
], |
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 | |
namespace App\Nova\Filters; | |
use Illuminate\Http\Request; | |
use Illuminate\Support\Carbon; | |
use Illuminate\Container\Container; | |
use Laravel\Nova\Filters\DateFilter as NovaDateFilter; | |
class DateFilter extends NovaDateFilter |
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
<div class="wrapper"> | |
<div class="container"> | |
<div class="list"> | |
<div class="list__header"> | |
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/195612/syntax_scott_avatar.jpg" alt="avatar"> | |
<div class="hostname">Scott Tolinski</div> | |
</div> | |
<div class="list__body"> | |
<div class="list__item" data-key="81"> | |
<div class="list__item-key">Q</div> |
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
<script> | |
export default { | |
props: ['label', 'checked'], | |
data() { | |
return { | |
classes: { | |
'checkbox-input-active': this.checked | |
}, | |
} | |
}, |
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
<? | |
// | |
// [ BUY BTC & ETH DAILY ON BITSTAMP ] | |
// by @levelsio | |
// | |
// 2017-08-23 | |
// | |
// 1) buy $40/day BTC | |
// 2) buy $10/day ETH | |
// |
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
{ | |
"name": "hemp/zombie", | |
"description": "Zttp", | |
"keywords": ["framework", "laravel"], | |
"license": "MIT", | |
"type": "project", | |
"autoload": { | |
"files": [ | |
"helpers.php" | |
] |
I used to use NERD tree for quite a while, then switched to CtrlP for something a little more lightweight. My setup now includes zero file browser or tree view, and instead uses native Vim fuzzy search and auto-directory switching.
There is a super sweet feature in Vim whereby you can fuzzy find your files using **/*
, e.g.:
:vsp **/*<partial file name><Tab>
NewerOlder