Artem Dolgiy 2024-12-31 17:33:33 +03:00
parent 81cf5d51af
commit 5fa282137d
2 changed files with 27 additions and 0 deletions

View File

@ -22,6 +22,8 @@ set -g set-titles on # Enable automatic title updates
set -g mouse on # Enable mouse support set -g mouse on # Enable mouse support
set -g mode-style "fg=black,bg=blue" # Customize text selection colors in copy mode 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 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 set-environment -g LC_CTYPE "ru_RU.UTF-8" # Set environment encoding for Russian

View File

@ -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
```