Skip to content

Instantly share code, notes, and snippets.

View inmanturbo's full-sized avatar

Kevin Inman inmanturbo

  • 'Murica
  • 04:18 (UTC -04:00)
View GitHub Profile
@inmanturbo
inmanturbo / tailwind.js
Created January 25, 2025 16:24 — forked from heytulsiprasad/tailwind.js
Config tailwind to desktop first approach
module.exports = {
theme: {
extend: {},
screens: {
xl: { max: "1279px" },
// => @media (max-width: 1279px) { ... }
lg: { max: "1023px" },
// => @media (max-width: 1023px) { ... }
@inmanturbo
inmanturbo / AppName.php
Created August 26, 2024 02:04 — forked from isluewell/AppName.php
[6.0] Command app:name
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Support\Composer;
use Symfony\Component\Finder\Finder;
use Illuminate\Filesystem\Filesystem;
use Symfony\Component\Console\Input\InputArgument;

Setup terminal

echo "${USER} ALL=(ALL) NOPASSWD: ALL" | sudo tee -a /etc/sudoers
sudo apt install zsh software-properties-common curl git network-manager libnss3-tools jq xsel
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Oh my zsh.

Install with curl

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

Enabling Plugins (zsh-autosuggestions & zsh-syntax-highlighting)