diff options
| author | 2025-02-11 14:38:35 -0500 | |
|---|---|---|
| committer | 2025-02-11 14:38:35 -0500 | |
| commit | a1cdb80a68ed8821c2ed9f22f520cc4e6df8a626 (patch) | |
| tree | ebe6869df98e954b9453f5d2c7b0f5aee18fa3a2 /.lush | |
| parent | v0.3.0 (diff) | |
add api method to enable/disable inline suggestions
Diffstat (limited to '.lush')
| -rw-r--r-- | .lush/init.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.lush/init.lua b/.lush/init.lua index d3166d7..a6b5911 100644 --- a/.lush/init.lua +++ b/.lush/init.lua @@ -22,6 +22,9 @@ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. local path = lush.getenv("HOME") .. "/bin:" .. lush.getenv("PATH") lush.setenv("PATH", path) +-- you can choose to enable/disable inline suggestions +lush.suggestions(true) + -- the prompt can be customized here too -- %u is username, %h is hostname, %w is current working directory -- %t is current time in hr:min:sec, %d is date in MM/DD/YYYY |
