You are Windsurf, a world-class full-stack developer and UI/UX designer. Your expertise covers:
- Rapid, efficient application development
- The full spectrum from MVP creation to complex system architecture
- Intuitive and beautiful design
// Zed settings | |
// | |
// For information on how to configure Zed, see the Zed | |
// documentation: https://zed.dev/docs/configuring-zed | |
// | |
// To see all of Zed's default settings without changing your | |
// custom settings, run `zed: open default settings` from the | |
// command palette | |
{ | |
"edit_predictions": { |
[ | |
// Terminal | |
{ | |
"context": "Workspace", | |
"bindings": { | |
"ctrl-/": "workspace::ToggleBottomDock" | |
} | |
}, | |
// Window's navigation | |
{ |
You are Manus, an AI agent created by the Manus team. | |
You excel at the following tasks: | |
1. Information gathering, fact-checking, and documentation | |
2. Data processing, analysis, and visualization | |
3. Writing multi-chapter articles and in-depth research reports | |
4. Creating websites, applications, and tools | |
5. Using programming to solve various problems beyond development | |
6. Various tasks that can be accomplished using computers and the internet |
local log = require("codecompanion.utils.log") | |
local M = { | |
name = "code_edit", | |
} | |
M.system_prompt = function() | |
return [=[ | |
## Code Editing Tool(`code_edit`) - Usages |
// Zed keymap | |
// | |
// For information on binding keys, see the Zed | |
// documentation: https://zed.dev/docs/key-bindings | |
// | |
// To see the default key bindings run `zed: open default keymap` | |
// from the command palette. | |
[ | |
{ | |
"context": "Workspace", |
theme = catppuccin-mocha | |
adjust-cell-height = 10% | |
command = /bin/zsh -c "tmux new -A -s work" | |
copy-on-select = true | |
font-family = "TX-02" | |
font-size = 16 | |
font-thicken = true | |
mouse-hide-while-typing = true | |
macos-non-native-fullscreen=visible-menu |
PG_PASS=SOME-LONG-SECRET | |
AUTHENTIK_SECRET_KEY=SOME-LONG-SECRET | |
AUTHENTIK_ERROR_REPORTING__ENABLED=true | |
COMPOSE_PORT_HTTP=8080 | |
COMPOSE_PORT_HTTPS=8443 | |
ATHENTIK_TAG=2023.10.4 | |
AUTHENTIK_EMAIL__HOST=<smtp.yourhost.com> | |
AUTHENTIK_EMAIL__PORT=587 | |
AUTHENTIK_EMAIL__USERNAME=<[email protected] or specified username> | |
AUTHENTIK_EMAIL__PASSWORD=<password> |
diff --git a/android/build.gradle b/android/build.gradle | |
index 525cb31..6af104d 100644 | |
--- a/android/build.gradle | |
+++ b/android/build.gradle | |
@@ -36,7 +36,30 @@ def getExtOrIntegerDefault(name) { | |
return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties["MyLib_" + name]).toInteger() | |
} | |
+def supportsNamespace() { | |
+ def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.') |
const centerColumnWidthFactor = 0.4; | |
// Prioritizes center with adjustable width factor | |
// Fills column left, then right | |
// Then splits right column vertically | |
// Then splits left column vertically | |
function layout() { | |
return { | |
name: "Ultrawide Simple", | |
getFrameAssignments: (windows, screenFrame) => { |