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
// add this to ~/.ideavimrc file to switch to normal mode with (jj) key bindings | |
imap jj <Esc> | |
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
{"lastUpload":"2020-09-15T00:58:07.652Z","extensionVersion":"v3.4.3"} |
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
<?php | |
if (!function_exists('classActivePath')) { | |
function classActivePath($segment, $value) | |
{ | |
if(!is_array($value)) { | |
return Request::segment($segment) == $value ? ' menu-open' : ''; | |
} | |
foreach ($value as $v) { | |
if(Request::segment($segment) == $v) return ' menu-open'; | |
} |
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 .='xdg-open .' | |
alias 2='/var/www/html' | |
alias c=clear | |
alias comda='composer dump-autoload' | |
alias comi='composer install' | |
alias comu='composer update' | |
alias nrd='npm run dev' | |
alias nrw='npm run watch' | |
alias pa='php artisan' | |
alias pacc='php artisan cache:clear' |
NewerOlder