chore: dump changes 7180e99c
Steve Simkins · 2025-07-06 13:46 3 file(s) · +49 −6
ghostty/config +43 −1
1 -
/Users/stevedylandev/dotfiles/ghostty/config
1 +
font-family = CommitMono Nerd Font
2 +
font-family-bold = CommitMono Nerd Font
3 +
font-family-italic = CommitMono Nerd Font
4 +
font-family-bold-italic = CommitMono Nerd Font
5 +
font-size = 14
6 +
7 +
confirm-close-surface = false
8 +
clipboard-read = allow
9 +
clipboard-write = allow
10 +
mouse-hide-while-typing = true
11 +
window-padding-x = 6
12 +
window-padding-balance = true
13 +
window-width = 85
14 +
window-height = 30
15 +
macos-titlebar-proxy-icon = hidden
16 +
17 +
keybind = ctrl+shift+f=write_screen_file:paste
18 +
19 +
background = #121113
20 +
foreground = #ffffff
21 +
22 +
selection-background = #222222
23 +
selection-foreground = #000000
24 +
25 +
palette = 0=#121113
26 +
palette = 1=#5f8787
27 +
palette = 2=#fbcb97
28 +
palette = 3=#e78a53
29 +
palette = 4=#888888
30 +
palette = 5=#999999
31 +
palette = 6=#aaaaaa
32 +
palette = 7=#c1c1c1
33 +
palette = 8=#333333
34 +
palette = 9=#5f8787
35 +
palette = 10=#fbcb97
36 +
palette = 11=#e78a53
37 +
palette = 12=#888888
38 +
palette = 13=#999999
39 +
palette = 14=#aaaaaa
40 +
palette = 15=#c1c1c1
41 +
42 +
auto-update-channel = stable
43 +
click-repeat-interval = 500
nvim/lua/plugins/colorschemes.lua +1 −1
1 1
return {
2 -
	"RRethy/base16-nvim",
2 +
	"stevedylandev/base16-nvim",
3 3
	lazy = false,
4 4
	priority = 1000,
5 5
	config = function()
tmux/.tmux.conf +5 −4
1 1
set -g default-terminal "xterm-256color"
2 2
set-option -ga terminal-overrides ",xterm-256color:Tc"
3 3
set -ga terminal-overrides ",xterm-256color:Tc"
4 -
set-option -g default-shell /opt/homebrew/bin/nu
4 +
# set-option -g default-shell /opt/homebrew/bin/nu
5 5
6 6
# action key
7 7
unbind C-b
8 -
set-option -g prefix C-q
9 -
set-option -g repeat-time 0
8 +
set -g prefix `
9 +
bind ` send-prefix
10 +
10 11
set -g @tpm-clean 'u'
11 12
bind-key x kill-pane # skip "kill-pane 1? (y/n)" prompt
12 13
set -g detach-on-destroy off  # don't exit from tmux when closing a session
59 60
set-option -g renumber-windows on
60 61
61 62
# Opens split panes in current path
62 -
bind '"' split-window -v -c "#{pane_current_path}"
63 +
bind '"' split-window -v -c "#{pan_current_path}"
63 64
bind % split-window -h -c "#{pane_current_path}"
64 65
65 66