Skip to content

Commit

Permalink
add: Projects & Configs Navigator to Examples
Browse files Browse the repository at this point in the history
  • Loading branch information
Pheon-Dev authored and meowgorithm committed Jan 9, 2024
1 parent aa01e67 commit 62cf473
Show file tree
Hide file tree
Showing 5 changed files with 782 additions and 0 deletions.
25 changes: 25 additions & 0 deletions examples/projects/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Quick Projects & Configuration Files Navigator
![p](https://github.com/Pheon-Dev/projects/blob/main/p.gif)
## Configuration file

```bash
~/.config/p/config.yaml
```

### Example

```yaml
---
filtering: true
projects:
project1:
title: nvim
description: ~/.config/nvim
path: .config/nvim
project2:
title: dwm
description: ~/.config/arco-dwm
path: .config/arco-dwm
status-bar: true
title: Configs
```
43 changes: 43 additions & 0 deletions examples/projects/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
module github.com/Pheon-Dev/p

go 1.19

require (
github.com/charmbracelet/bubbles v0.14.0
github.com/charmbracelet/bubbletea v0.23.1
github.com/charmbracelet/lipgloss v0.6.0
github.com/spf13/viper v1.14.0
)

require (
github.com/atotto/clipboard v0.1.4 // indirect
github.com/aymanbagabas/go-osc52 v1.0.3 // indirect
github.com/containerd/console v1.0.3 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mattn/go-localereader v0.0.1 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b // indirect
github.com/muesli/cancelreader v0.2.2 // indirect
github.com/muesli/reflow v0.3.0 // indirect
github.com/muesli/termenv v0.13.0 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/sahilm/fuzzy v0.1.0 // indirect
github.com/spf13/afero v1.9.2 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.4.1 // indirect
golang.org/x/sys v0.0.0-20220908164124-27713097b956 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
golang.org/x/text v0.4.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading

0 comments on commit 62cf473

Please sign in to comment.