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
" Go to github plugin page | |
nnoremap <leader>pl :call GoToPlugin()<CR><CR> | |
function! GoToPlugin() | |
normal "lyi' | |
let plugin = @l | |
execute "!open https://www.github.com/" . plugin | |
endfunction |
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 Tests; | |
use PHPUnit\Runner\AfterLastTestHook; | |
use PHPUnit\Runner\BeforeFirstTestHook; | |
use PHPUnit\Runner\BeforeTestHook; | |
class Hooks implements BeforeFirstTestHook, AfterLastTestHook, BeforeTestHook | |
{ |
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
# Get editor completions based on the config schema | |
"$schema" = 'https://starship.rs/config-schema.json' | |
format = """ | |
$username\ | |
$hostname\ | |
$localip\ | |
$shlvl\ | |
$singularity\ | |
$kubernetes\ |

OlderNewer