Initial commit
This commit is contained in:
49
skills/zellij-config/assets/config_templates/basic.kdl
Normal file
49
skills/zellij-config/assets/config_templates/basic.kdl
Normal file
@@ -0,0 +1,49 @@
|
||||
# Basic Zellij Configuration Template
|
||||
# Copy this to ~/.config/zellij/config.kdl and customize as needed
|
||||
|
||||
# UI Settings
|
||||
ui {
|
||||
pane_frames {
|
||||
rounded_corners true
|
||||
}
|
||||
}
|
||||
|
||||
# Mouse Settings
|
||||
mouse_mode true
|
||||
copy_on_select false
|
||||
|
||||
# Theme
|
||||
theme "default"
|
||||
|
||||
# Session Management
|
||||
session_serialization true
|
||||
pane_viewport_serialization false
|
||||
default_layout "default"
|
||||
default_mode "normal"
|
||||
|
||||
# Keybindings - Basic Setup
|
||||
keybinds {
|
||||
normal {
|
||||
bind "Ctrl g" { SwitchToMode "locked"; }
|
||||
bind "Ctrl p" { SwitchToMode "pane"; }
|
||||
bind "Alt n" { NewPane; }
|
||||
bind "Alt h" "Alt Left" { MoveFocusOrTab "Left"; }
|
||||
bind "Ctrl Shift t" { NewTab; }
|
||||
}
|
||||
pane {
|
||||
bind "h" "Left" { MoveFocus "Left"; }
|
||||
bind "l" "Right" { MoveFocus "Right"; }
|
||||
bind "j" "Down" { MoveFocus "Down"; }
|
||||
bind "k" "Up" { MoveFocus "Up"; }
|
||||
bind "p" { SwitchFocus; }
|
||||
bind "Ctrl c" { CopySelection; }
|
||||
}
|
||||
locked {
|
||||
bind "Ctrl g" { SwitchToMode "normal"; }
|
||||
}
|
||||
}
|
||||
|
||||
# Environment Variables
|
||||
env {
|
||||
EDITOR "nvim"
|
||||
}
|
||||
24
skills/zellij-config/assets/example_asset.txt
Normal file
24
skills/zellij-config/assets/example_asset.txt
Normal file
@@ -0,0 +1,24 @@
|
||||
# Example Asset File
|
||||
|
||||
This placeholder represents where asset files would be stored.
|
||||
Replace with actual asset files (templates, images, fonts, etc.) or delete if not needed.
|
||||
|
||||
Asset files are NOT intended to be loaded into context, but rather used within
|
||||
the output Claude produces.
|
||||
|
||||
Example asset files from other skills:
|
||||
- Brand guidelines: logo.png, slides_template.pptx
|
||||
- Frontend builder: hello-world/ directory with HTML/React boilerplate
|
||||
- Typography: custom-font.ttf, font-family.woff2
|
||||
- Data: sample_data.csv, test_dataset.json
|
||||
|
||||
## Common Asset Types
|
||||
|
||||
- Templates: .pptx, .docx, boilerplate directories
|
||||
- Images: .png, .jpg, .svg, .gif
|
||||
- Fonts: .ttf, .otf, .woff, .woff2
|
||||
- Boilerplate code: Project directories, starter files
|
||||
- Icons: .ico, .svg
|
||||
- Data files: .csv, .json, .xml, .yaml
|
||||
|
||||
Note: This is a text placeholder. Actual assets can be any file type.
|
||||
Reference in New Issue
Block a user