-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqonfig.yaml
More file actions
71 lines (71 loc) · 2.34 KB
/
qonfig.yaml
File metadata and controls
71 lines (71 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# qompassai/qonfig/qonfig.yaml
# Qompass AI Qonfig YAML
# Copyright (C) 2025 Qompass AI, All rights reserved
####################################################
- defaults:
link:
create: true
relink: true
- clean: ["~", ~/.config]
- create: [~/Downloads]
- link:
~/.shell:
~/.bash_profile:
~/.bashrc_user: bashrc
~/.zprofile:
~/.zshrc_user: zshrc
~/.gitconfig:
~/.gitcommit:
~/.config/gh-dash/config.yml: gh_dash.yml
~/Taskfile.yml:
~/Library/Application Support/lazygit/config.yml:
path: lazygit.yml
force: true
~/.config/ghostty/config:
path: ghostty.conf
force: true
~/.config/kitty/kitty.conf:
force: true
~/.config/kitty/dark-theme.auto.conf:
path: kitty.dark-theme.auto.conf
force: true
~/.config/kitty/light-theme.auto.conf:
path: kitty.light-theme.auto.conf
force: true
~/.wezterm.lua:
force: true
~/.config/tmux/tmux.conf:
~/.config/sesh/sesh.toml: sesh.toml
~/.config/aerospace/aerospace.toml:
path: aerospace.toml
if: '[ "$(uname -s)" = "Darwin" ]'
~/.config/yabai/yabairc:
path: yabairc
if: '[ "$(uname -s)" = "Darwin" ]'
~/.config/skhd/skhdrc:
path: skhdrc
if: '[ "$(uname -s)" = "Darwin" ]'
~/.config/diver:
path: Diver
force: true
~/.config/neovide/config.toml: neovide.toml
~/.config/zed/settings.json:
path: zed.jsonc
force: true
~/.cursor/mcp.json:
path: mcpservers.json5
force: true
- shell:
- description: sync dotbot
command: git submodule sync --recursive
- description: add shell sourcing to bash, if not already added
command: grep -qxF '[[ -s ~/.bashrc_user ]] && source ~/.bashrc_user' ~/.bashrc || echo '[[ -s ~/.bashrc_user ]] && source ~/.bashrc_user' >> ~/.bashrc
- description: add shell sourcing to zsh, if not already added
command: grep -qxF '[[ -s ~/.zshrc_user ]] && source ~/.zshrc_user' ~/.zshrc || echo '[[ -s ~/.zshrc_user ]] && source ~/.zshrc_user' >> ~/.zshrc
- description: ssh setup
command: |
mkdir -p ~/.ssh && chmod 700 ~/.ssh
touch ~/.ssh/known_hosts && chmod 644 ~/.ssh/known_hosts
touch ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys
- description: pre-commit hook
command: cp pre-commit .git/hooks/pre-commit