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
| --- | |
| alwaysApply: true | |
| --- | |
| # Modern CLI Tools - Agent Rules | |
| Always use these modern CLI tools instead of their default Unix equivalents for better performance, user experience, and functionality. | |
| ## File Finding and Searching | |
| ### Use `fd` instead of `find` |
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
| # Tailwind CSS v4.0 | |
| ## Core Changes | |
| - **CSS-first configuration**: Configuration is now done in CSS instead of JavaScript | |
| - Use `@theme` directive in CSS instead of `tailwind.config.js` | |
| - Example: | |
| ```css | |
| @import "tailwindcss"; |
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
| {"name":"Obaid's Cursor Profile","settings":"{\"settings\":\"{\\n \\\"editor.inlineSuggest.enabled\\\": true,\\n \\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\n \\\"editor.minimap.enabled\\\": false,\\n \\\"security.workspace.trust.untrustedFiles\\\": \\\"open\\\",\\n \\\"terminal.integrated.defaultProfile.osx\\\": \\\"zsh\\\",\\n \\\"terminal.integrated.fontSize\\\": 12,\\n \\\"editor.defaultFormatter\\\": \\\"dbaeumer.vscode-eslint\\\",\\n \\\"workbench.editor.empty.hint\\\": \\\"hidden\\\",\\n \\\"explorer.confirmDelete\\\": false,\\n \\\"editor.tabSize\\\": 2,\\n \\\"outline.collapseItems\\\": \\\"alwaysCollapse\\\",\\n \\\"search.collapseResults\\\": \\\"auto\\\",\\n \\\"zenMode.fullScreen\\\": true,\\n \\\"zenMode.showTabs\\\": \\\"single\\\",\\n \\\"editor.scrollBeyondLastLine\\\": false,\\n \\\"zenMode.hideLineNumbers\\\": false,\\n \\\"window.zoomLevel\\\": 1,\\n \\\"svelte.enable-ts-plugin\\\": true,\\n \\\"workbench.colorCustomiz |
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
| # ---------------------- | |
| # Git Aliases | |
| # ---------------------- | |
| alias ga='git add' | |
| alias gaa='git add .' | |
| alias gaaa='git add --all' | |
| alias gau='git add --update' | |
| alias gb='git branch' | |
| alias gbd='git branch --delete ' | |
| alias gc='git commit' |