diff options
| author | Robert Günzler <r@gnzler.io> | 2022-09-28 19:16:59 +0200 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2022-09-28 19:16:59 +0200 |
| commit | aa102f49e205000bdf652f3dc612091136729728 (patch) | |
| tree | 6c2b41ff1b6b7c14831f72aa46f4305fcfe2763c | |
| parent | eddeab8513502cfbc58b648fdba0b89c296b35cb (diff) | |
bashrc: unconditionally load z_lua
| -rw-r--r-- | .bashrc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.bashrc b/.bashrc index 0ad2e42..29eedc0 100644 --- a/.bashrc +++ b/.bashrc @@ -34,10 +34,9 @@ eval "$(direnv hook bash)" # enable navi eval "$(navi widget bash)" # enable z.lua -if [ -d /usr/libexec/z_lua ]; then - eval "$(luajit /usr/libexec/z_lua/z.lua --init bash enhanced once fzf)" - # safe_load /usr/libexec/z_lua/czmod/czmod.bash -fi +eval "$(luajit /usr/libexec/z_lua/z.lua --init bash enhanced once fzf)" +# safe_load /usr/libexec/z_lua/czmod/czmod.bash + # enable starship eval "$(starship init bash)" |