diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 6f8a0ac..e8f1984 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -22,6 +22,8 @@ set -g set-titles on # Enable automatic title updates set -g mouse on # Enable mouse support set -g mode-style "fg=black,bg=blue" # Customize text selection colors in copy mode #set -g status-position top # Place status bar at top +set -g default-shell /usr/bin/zsh # Set default shell +set -g default-command /usr/bin/zsh # Set default shell command set-environment -g LC_CTYPE "ru_RU.UTF-8" # Set environment encoding for Russian diff --git a/README.md b/README.md index e69de29..dc2a5f7 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,25 @@ +# В репозитории собраны некоторые конфигурационные файлы для комфортной работы в консоли GNU Linux + +## Tmux + +### Установка tmux + +```shell +sudo apt update && sudo apt install -y curl git tmux +``` + +## Скачивание конфига и запуск + +Плагины установятся автоматически + +```shell +curl --create-dirs -fLo \ + ~/.config/tmux/tmux.conf \ + https://git.da2001.ru/da2001/dots/raw/branch/main/.config/tmux/tmux.conf +``` + +После скачивания конфига можно запускать tmux, первый запуск будет долгим, т.к. потребуется скачать плагины + +```shell +tmux +```