feat: add eza installer
This commit is contained in:
parent
dd3bf11e38
commit
74e4583cbf
2 changed files with 15 additions and 0 deletions
|
@ -21,6 +21,8 @@ source $ZSH/oh-my-zsh.sh
|
||||||
#region aliases & ENV VAR
|
#region aliases & ENV VAR
|
||||||
alias c='clear'
|
alias c='clear'
|
||||||
|
|
||||||
|
alias e='eza --long --classify=always --color=always --icons=always --all --group-directories-first --binary --group --no-time --octal-permissions'
|
||||||
|
|
||||||
export EDITOR=vim
|
export EDITOR=vim
|
||||||
export VISUAL=vim
|
export VISUAL=vim
|
||||||
#endregion aliases & ENV VAR
|
#endregion aliases & ENV VAR
|
||||||
|
|
13
internal/installers/eza.go
Normal file
13
internal/installers/eza.go
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
package installers
|
||||||
|
|
||||||
|
import "github.com/developomp/pompup/internal/wrapper"
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
register(&Installer{
|
||||||
|
Name: "eza",
|
||||||
|
Desc: "better ls",
|
||||||
|
Setup: func() {
|
||||||
|
wrapper.ParuOnce("eza")
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue