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
#!/bin/bash | |
# Color definitions | |
RED='\033[0;31m' | |
GREEN='\033[0;32m' | |
YELLOW='\033[1;33m' | |
BLUE='\033[0;34m' | |
MAGENTA='\033[0;35m' | |
CYAN='\033[0;36m' | |
GRAY='\033[0;90m' |
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
* { | |
font-family: "CaskaydiaMono Nerd Font" !important; | |
font-weight: 400; | |
font-size: 14px !important; | |
} | |
.monaco-editor .ced-1-TextEditorDecorationType32-2 { | |
display: none !important; | |
} |
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
"use client"; | |
import { useDebugBar } from "@/providers/debugBarProvider"; | |
import { useEffect, useState } from "react"; | |
import { Button } from "@/components/ui/button"; | |
import { handleDebugBarLogs } from "@/lib/debugBar"; | |
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; | |
import { | |
Accordion, | |
AccordionContent, |
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 | |
namespace App\Repositories\Eloquent; | |
use App\Repositories\Interfaces\EloquentRepositoryInterface; | |
use App\Resources\BaseResource; | |
use App\Traits\HasRelations; | |
use Exception; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Database\Eloquent\RelationNotFoundException; |
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
{ | |
"vscode_custom_css.imports": ["file:///Users/[username]/.vscode/base.css"], | |
// "apc.electron": { | |
// "frame": false, | |
// "transparent": true, | |
// "titleBarStyle": "hidden", | |
// "vibrancy": "ultra-dark", | |
// "opacity": 0.99, | |
// "trafficLightPosition": { | |
// "x": 15, |
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
// Place your key bindings in this file to override the defaults | |
[ | |
{ | |
"key": "cmd+g s", | |
"command": "search.action.openNewEditor", | |
"when": "editorTextFocus && vim.active && vim.overrideCopy && vim.use<D-c> && !inDebugRepl && vim.mode !== 'Insert'" | |
}, | |
{ | |
"key": "cmd+g t", | |
"command": "editor.action.goToTypeDefinition", |
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
* { | |
font-family: "FiraCode Nerd Font" !important; | |
font-size: 13px !important; | |
} | |
.editor .title { | |
background: transparent !important; | |
} | |
.find-widget { |