Compare commits

7 Commits

9 changed files with 109 additions and 16 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
config/alacritty/current-theme.toml

View File

@ -1,6 +1,6 @@
import = [ general.import = [
"~/.config/alacritty/themes/current-theme.toml" "~/.config/alacritty/current-theme.toml"
] ]
live_config_reload = true general.live_config_reload = true
ipc_socket = true general.ipc_socket = true

View File

@ -1,18 +1,20 @@
[user] [user]
email = redacted@example.org email = "transcaffeine@finally.coffee"
name = redacted name = "transcaffeine"
signingkey = redacted signingKey = "03624C433676E465"
[commit] [commit]
gpgsign = true gpgSign = true
[tag]
gpgSign = true
[gpg] [gpg]
program = /usr/bin/gpg program = "/usr/bin/gpg"
[rebase] [rebase]
autostash = true autoStash = true
autosquash = true autoSquash = true
[pull] [pull]
rebase = true rebase = true
autostash = true autoStash = true
[format] [format]
pretty = oneline pretty = "oneline"
[alias] [alias]
logv = log --pretty=full --show-signature logv = "log --pretty=full --show-signature"

View File

@ -0,0 +1 @@
light-mode.conf

View File

@ -0,0 +1,19 @@
# Set colors
active_window_bg=colour199
inactive_window_bg=colour233
bar_fg=colour255
bar_bg=colour235
# Change pane colors
set -g pane-border-style fg=colour237
set -g pane-active-border-style fg=colour199
# Tweak currently active window
setw -g window-status-current-style bg=colour199,fg=colour255,none
# Tweak last active window style
setw -g window-status-last-style fg=colour255,bg=colour238,none
# Tweak display of window overview
setw -g window-status-style bg=colour233,fg=colour255,none
# Tweak status line design
set -g status-style bg=colour235,fg=colour199

View File

@ -0,0 +1,19 @@
# Colors for nested-tmux
active_window_bg=colour199
inactive_window_bg=colour242
bar_bg=colour254
bar_fg=colour255
# Change pane colors
set -g pane-border-style fg=colour252
set -g pane-active-border-style fg=colour199
# Tweak currently active window
setw -g window-status-current-style bg=colour199,fg=colour255,none
# Tweak last active window style
setw -g window-status-last-style fg=colour255,bg=colour242,none
# Tweak display of window overview
setw -g window-status-style bg=colour252,fg=colour240,none
# Tweak status line design
set -g status-style bg=colour254,fg=colour199

51
config/tmux/tmux.conf Normal file
View File

@ -0,0 +1,51 @@
# vi:syntax=tmux
# Reload the config with the "r" key
bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
set -s exit-empty off
unbind C-a
set -g prefix C-b
# No automatic renaming of windows
set -g automatic-rename off
# Enable 256-color terminal
set -g default-terminal "screen-256color"
# Set titles to be informative
set -g set-titles on
set -g set-titles-string "tmux: [#H] [#S] [#W:#D #I:#P]"
# Change pane colors
set -g pane-border-style fg=colour237
set -g pane-active-border-style fg=colour199
# Tweak currently active window
setw -g window-status-current-format " #F[#W] "
# Tweak last active window style
# Tweak display of window overview
setw -g window-status-format " #F[#W][#I] "
# Tweak status line design
set -g status-justify centre
set -g status-left " [#H] [#S] "
set -g status-left-length 100
set -g status-right '[%Y-%m-%d %H:%M.%S]'
# Refresh status bar every 2s
set -g status-interval 2
# Set some helpful limits & modes
set -g mouse off
set -g history-limit 500000
# Make tmux resize based on smallest client actually viewing the window, not just attached
setw -g aggressive-resize on
# Retain cwd on new pane creation
bind c new-window -c "#{pane_current_path}"
source-file ~/.config/tmux/current-theme.conf
#refresh-client

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
ln -fs themes/themes/monokai_pro.toml .config/alacritty/current-theme.toml ln -fs themes/themes/monokai_pro.toml .config/alacritty/current-theme.toml
touch ~/.config/alacritty/alacritty.toml touch ~/.config/alacritty/alacritty.toml

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
ln -fs themes/themes/catppuccin_latte.toml .config/alacritty/current-theme.toml ln -fs themes/themes/catppuccin_latte.toml .config/alacritty/current-theme.toml
touch ~/.config/alacritty/alacritty.toml touch ~/.config/alacritty/alacritty.toml