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
BoldAsFont=no | |
ForegroundColour=191,191,191 | |
Term=xterm-256color | |
SwitchShortcuts=no | |
Black=78,78,78 | |
Red=255,108,96 | |
Green=168,255,96 | |
Yellow=255,255,182 | |
Blue=150,203,254 | |
Magenta=255,115,253 |
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
/** @var ${type} */ | |
private $$${property}; | |
public function get${propertyCapital}() : ${type} | |
{ | |
return $$this->${property}; | |
} | |
${cursor} |
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
namespace ${bundle}Bundle\Controller; | |
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; | |
use Symfony\Bundle\FrameworkBundle\Controller\Controller; | |
use Symfony\Component\HttpFoundation\Request; | |
use Symfony\Component\HttpFoundation\Response; | |
class ${controller}Controller extends Controller | |
{ | |
/** |
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
let defaultengine = "duckduckgo" | |
let barposition = "bottom" | |
let locale = "uk" | |
let blacklists = ["https://mail.google.com/*"] | |
imap <C-i> editWithVim |
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
User_List Host_list = (Run_As) Cmnd_Spec_List | |
%wheel ALL = (ALL) ALL | |
jenkins slave.local = (backup_user) NOPASSWD: /path/to/backup.sh |
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
/** @var ${type} */ | |
private $$${property}; | |
/** | |
* Returns the ${property} value. | |
* | |
* @return ${type} | |
*/ | |
public function get${propertyCapital}() | |
{ |
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
/** | |
* Holds definition of ${class_name} | |
* @package ${package_name} | |
*/ | |
/** | |
* ${class_description} | |
* @package ${package_name} | |
*/ | |
class ${class_name} |
NewerOlder