feat: ctrl f to search ( new files not indexed )

This commit is contained in:
2026-02-01 02:57:23 +00:00
parent 1f07c7bec9
commit 3f94a99bd0
6 changed files with 667 additions and 3 deletions
+6 -3
View File
@@ -14,13 +14,16 @@ var (
Primary = lipgloss.Color("#7D56F4")
Highlight = lipgloss.Color("#89DDFF")
HoverHighlight = lipgloss.Color("#91B4D5")
// TODO: to extend as needed, right now this is just a
// placeholder
FolderBlue = lipgloss.Color("#5FAFFF") // Blue for folder names in search
FileGreen = lipgloss.Color("#98C379") // Green for file icons
)
// ==================== icons ====================
// ==================== icons (nerd fonts) ====================
var (
VerticalLine = "│"
ArrowDownIcon = "⌄"
ArrowRightIcon = ""
// need nerd fonts to render correctly, how I got them? https://fontawesome.com/v4/icon/folder has a unicode
FolderIcon = "\uf07b"
FileIcon = "\uf0f6"
)