tangled
alpha
login
or
join now
kacaii.dev
/
dotfiles
0
fork
atom
๐ Backup for my config files
dotfiles
0
fork
atom
overview
issues
pulls
pipelines
add stow
kacaii.dev
3 months ago
f23fa7cb
cf30e8a0
+86
2 changed files
expand all
collapse all
unified
split
.gitconfig
.tmux.conf
+23
.gitconfig
reviewed
···
1
1
+
[user]
2
2
+
email = kacaii.privado@gmail.com
3
3
+
name = Kacaii
4
4
+
5
5
+
[core]
6
6
+
sshCommand = ssh -i ~/.ssh/id_ed25519 -F /dev/null
7
7
+
8
8
+
[ghq]
9
9
+
root = ~/ghq
10
10
+
11
11
+
[pull]
12
12
+
rebase = true
13
13
+
14
14
+
[init]
15
15
+
defaultBranch = main
16
16
+
17
17
+
[alias]
18
18
+
lol = log --oneline --decorate
19
19
+
graph = log --oneline --graph --decorate
20
20
+
21
21
+
[merge]
22
22
+
conflictstyle = diff3
23
23
+
+63
.tmux.conf
reviewed
···
1
1
+
# Commands ---------------------------------------------------------------------
2
2
+
unbind r
3
3
+
bind r source-file ~/.tmux.conf
4
4
+
5
5
+
# Split horizontally ๎ญ
6
6
+
unbind '"'
7
7
+
bind | split-window -h -c "#{pane_current_path}"
8
8
+
9
9
+
# Split vertically ๎ญ
10
10
+
unbind %
11
11
+
bind - split-window -v -c "#{pkne_current_path}"
12
12
+
13
13
+
# Zoom ๎ฎ
14
14
+
bind f resize-pane -Z
15
15
+
16
16
+
# Status Bar -------------------------------------------------------------------
17
17
+
set -g status-position 'top'
18
18
+
set -g status-style "bg=default,fg=black,bright"
19
19
+
20
20
+
set -g status-left "#[fg=green] ๎ฏ "
21
21
+
set -g status-left-length 100
22
22
+
set -g status-right "#[fg=black,bright]#S"
23
23
+
24
24
+
# Window buttons ---------------------------------------------------------------
25
25
+
set -g window-status-format " ๎ฉฑ"
26
26
+
set -g window-status-current-format " ๎ฉฑ"
27
27
+
28
28
+
set -g window-status-current-style "#{?window_zoomed_flag,fg=yellow,fg=magenta,nobold}"
29
29
+
set -g window-status-bell-style "fg=red,nobold"
30
30
+
31
31
+
# Pane Separators --------------------------------------------------------------
32
32
+
set -g pane-border-lines "single"
33
33
+
set -g pane-border-style "fg=black,bright"
34
34
+
set -g pane-active-border-style "fg=magenta"
35
35
+
36
36
+
# QoL --------------------------------------------------------------------------
37
37
+
set -g renumber-windows on
38
38
+
set -g mouse on
39
39
+
set -g repeat-time 1000
40
40
+
set -g base-index 1
41
41
+
42
42
+
# Messages
43
43
+
set -g message-style "fg=black,bg=blue"
44
44
+
45
45
+
# ------------------------------------------------------------------------------
46
46
+
set -g set-clipboard on # Use system clipboard ๏ฟ
47
47
+
set -g default-terminal "${TERM}"
48
48
+
49
49
+
set -gq allow-passthrough all
50
50
+
set -ga update-environment TERM
51
51
+
52
52
+
# Color Corrections ๎ญ
53
53
+
set -g default-terminal "tmux-256color"
54
54
+
set -g terminal-overrides ",*:RGB"
55
55
+
56
56
+
# List of plugins ๏
57
57
+
set -g @plugin "christoomey/vim-tmux-navigator"
58
58
+
set -g @plugin "sainnhe/tmux-fzf"
59
59
+
set -g @plugin "tmux-plugins/tpm"
60
60
+
set -g @plugin "tmux-plugins/tmux-sensible"
61
61
+
62
62
+
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
63
63
+
run "~/.tmux/plugins/tpm/tpm"