1
0
Fork 0

feat: add eza installer

This commit is contained in:
Kim, Jimin 2024-04-14 20:08:37 +09:00
parent dd3bf11e38
commit 74e4583cbf
Signed by: pomp
GPG key ID: 2B516173EDD492EB
2 changed files with 15 additions and 0 deletions

View file

@ -21,6 +21,8 @@ source $ZSH/oh-my-zsh.sh
#region aliases & ENV VAR
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 VISUAL=vim
#endregion aliases & ENV VAR

View 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")
},
})
}