Last active
December 30, 2023 12:25
-
-
Save vipmax/a0041103e7304b571e01fc67b111447a to your computer and use it in GitHub Desktop.
alacritty and tmux confings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unbind C-b | |
set-option -g prefix C-a | |
bind-key C-a send-prefix | |
bind-key s set-option status | |
bind r source-file ~/.tmux.conf | |
bind h split-window -v | |
bind v split-window -h | |
set -sg escape-time 10 | |
setw -g mouse on | |
set -g default-terminal "screen-256color" | |
set -g status-style bg=default | |
set-option -g default-terminal "xterm-256color" | |
set -g status-left '' | |
set -g status-right '' | |
set -g status-justify right | |
set -g status-position bottom | |
set -g pane-active-border-style fg=gray | |
set -g pane-border-style fg=gray |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window: | |
opacity: 0.95 | |
decorations: buttonless | |
dimensions: | |
columns: 120 | |
lines: 30 | |
padding: | |
x: 15 | |
y: 9 | |
font: | |
size: 15.5 | |
normal: | |
family: JetBrainsMono Nerd Font | |
style: Bold | |
key_bindings: | |
- { key: Right, mods: Alt, chars: "\ef" } | |
- { key: Left, mods: Alt, chars: "\eb" } | |
- { key: Right, mods: Shift, chars: "\x1b[1;2C" } | |
- { key: Left, mods: Shift, chars: "\x1b[1;2D" } | |
colors: | |
primary: | |
background: '#2c2c2c' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment