Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 16 additions & 19 deletions config/gomi/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,41 +22,39 @@ core:
verbose: true
permanent_delete:
enable: false

ui:
density: spacious
preview:
syntax_highlight: true
colorscheme: nord
colorscheme: dracula
directory_command: ls -F -A --color=always
style:
list_view:
cursor: "#AD58B4"
selected: "#5FB458"
filter_match: "#F39C12"
filter_prompt: "#7AA2F7"
cursor: "#BD93F9"
selected: "#50FA7B"
filter_match: "#FFB86C"
filter_prompt: "#8BE9FD"
indent_on_select: false
detail_view:
border: "#FFFFFF"
border: "#6272A4"
info_pane:
deleted_from:
fg: "#EEEEEE"
bg: "#1C1C1C"
fg: "#F8F8F2"
bg: "#282A36"
deleted_at:
fg: "#EEEEEE"
bg: "#1C1C1C"
fg: "#F8F8F2"
bg: "#282A36"
preview_pane:
border: "#3C3C3C"
border: "#44475A"
size:
fg: "#EEEEDD"
bg: "#3C3C3C"
fg: "#F8F8F2"
bg: "#44475A"
scroll:
fg: "#EEEEDD"
bg: "#3C3C3C"
deletion_dialog: "#FF007F"
fg: "#F8F8F2"
bg: "#44475A"
deletion_dialog: "#FF79C6"
exit_message: bye!
paginator_type: dots

history:
include:
within_days: 100
Expand All @@ -70,7 +68,6 @@ history:
size:
min: ""
max: 10GB

logging:
enabled: false
level: info
Expand Down
44 changes: 26 additions & 18 deletions home-manager/programs/git/.gitignore.global
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
# AI
.conductor/
.cursor/
.entire/
.pi/
.serena/
.worktrees/

# Env files
.env.*
.env.local

Copilot AI Mar 22, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The .env.local entry is redundant because it’s already matched by the preceding .env.* pattern. Consider removing .env.local (or narrowing the glob if you intended to exclude only certain .env.* files).

Suggested change
.env.local

Copilot uses AI. Check for mistakes.
.envrc

# Other
.cache/
.devenv/
.jj/

# Tmp files
tmp

Copilot AI Mar 22, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the tmp section, tmp* already matches tmp (since * can match an empty string), so keeping both is redundant. Consider dropping the plain tmp entry unless you specifically want it to stand out separately.

Suggested change
tmp

Copilot uses AI. Check for mistakes.
.tmp*
tmp*

# Ignore deprecated files
*.deprecated

# General
.DS_Store
.AppleDouble
Expand Down Expand Up @@ -25,21 +51,3 @@ Icon
Network Trash Folder
Temporary Items
.apdisk

# Env files
.env.*
.env.local
.envrc

# Tmp files
tmp
.tmp*
tmp*

# AI
.cursor/
.entire/
.serena/

# Ignore deprecated files
*.deprecated
Loading