mod
parent
81cf5d51af
commit
5fa282137d
|
@ -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
|
||||
|
||||
|
||||
|
|
25
README.md
25
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
|
||||
```
|
Loading…
Reference in New Issue