first commit

This commit is contained in:
2026-05-22 00:26:27 +03:00
commit c9d6d38491
17 changed files with 2311 additions and 0 deletions

22
config/fush.toml Normal file
View File

@@ -0,0 +1,22 @@
# Конфигурационный файл fush shell
# Приглашение командной строки
prompt = "fush:-> "
prompt_color = "#00bfff"
# Директории
lua_scripts_dir = "~/.local/share/fush/lua"
history_file = "~/.cache/fush/history"
log_file = "~/.cache/fush/fush.log"
# Размер истории команд
history_size = 1000
# Переменные окружения
[environment]
# Путь для поиска исполняемых файлов
PATH = "/usr/local/bin:/usr/bin:/bin"
# Домашняя директория
HOME = "~"
# Терминал по умолчанию
TERM = "xterm-256color"