Compare commits

...

2 commits

Author SHA1 Message Date
powermaker450 a3f9688803 lsd, use neovim as manpager 2024-11-26 12:34:24 -05:00
powermaker450 0f8d6fa859 Ignore certain files in tab completion 2024-11-26 12:33:41 -05:00
2 changed files with 6 additions and 1 deletions

View file

@ -6,6 +6,7 @@
## Basic Utils
alias ls="ls -A --color=tty"
alias du="du -sh"
lsd --version 2>&1 >/dev/null && alias ls="lsd -A --color always" || alias ls="ls -A --color=tty"
#
#
## Kitty

View file

@ -1 +1,5 @@
nvim -v 2>&1 >/dev/null && export EDITOR=nvim
# Ignore these file extensions in tab completions
fignore=(.class)
# Set env vars according to the installed programs
nvim -v 2>&1 >/dev/null && export EDITOR=nvim && export MANPAGER="nvim +Man!"