mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-03 20:48:45 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dda4b65458 | |||
| 7d564d0b4d | |||
| bc30e5f7a6 | |||
| 9e2f7e8f1b | |||
| 7b47e49804 | |||
| 1be7649122 |
@@ -1,6 +1,6 @@
|
|||||||
#!/bin/env bash
|
#!/bin/env bash
|
||||||
|
|
||||||
export NVM_DIR="$HOME/.nvm"
|
[ -z "$NVM_DIR" ] && export NVM_DIR="$HOME/.config/nvm"
|
||||||
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
||||||
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
||||||
|
|
||||||
|
|||||||
@@ -324,21 +324,26 @@ chars = "\u0002/"
|
|||||||
key = "F"
|
key = "F"
|
||||||
mods = "Command"
|
mods = "Command"
|
||||||
|
|
||||||
|
[mouse]
|
||||||
|
hide_when_typing = true
|
||||||
|
|
||||||
[[mouse.bindings]]
|
[[mouse.bindings]]
|
||||||
action = "PasteSelection"
|
action = "PasteSelection"
|
||||||
mouse = "Middle"
|
mouse = "Middle"
|
||||||
|
|
||||||
[selection]
|
[selection]
|
||||||
semantic_escape_chars = ",│`|:\"' ()[]{}<>"
|
semantic_escape_chars = ",│`|:\"' ()[]{}<>"
|
||||||
|
save_to_clipboard = true
|
||||||
|
|
||||||
[window]
|
[window]
|
||||||
decorations = "Buttonless"
|
decorations = "Full"
|
||||||
dynamic_title = true
|
dynamic_title = true
|
||||||
opacity = 0.98
|
opacity = 0.98
|
||||||
|
blur = true
|
||||||
|
|
||||||
[window.dimensions]
|
[window.dimensions]
|
||||||
columns = 200
|
columns = 200
|
||||||
lines = 100
|
lines = 75
|
||||||
|
|
||||||
[window.padding]
|
[window.padding]
|
||||||
x = 5
|
x = 5
|
||||||
|
|||||||
@@ -52,5 +52,9 @@ have_brew()
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if [[ -f "$DOTFILES/config/exports-secret" ]]; then
|
||||||
|
source "$DOTFILES/config/exports-secret"
|
||||||
|
fi
|
||||||
|
|
||||||
source "$DOTFILES/config/exports-shell"
|
source "$DOTFILES/config/exports-shell"
|
||||||
source "$DOTFILES/config/exports-apps"
|
source "$DOTFILES/config/exports-apps"
|
||||||
|
|||||||
@@ -93,20 +93,19 @@ set-window-option -g mode-keys vi
|
|||||||
# ╰──────────────────────────────────────────────────────────╯
|
# ╰──────────────────────────────────────────────────────────╯
|
||||||
|
|
||||||
# Make sure status sides are long enough and centered is in the middle
|
# Make sure status sides are long enough and centered is in the middle
|
||||||
set -g status-left-length "30"
|
set -g status-left-length "0"
|
||||||
set -g status-right-length "30"
|
set -g status-right-length "30"
|
||||||
|
|
||||||
set-option -g status-position "bottom"
|
set-option -g status-position "bottom"
|
||||||
set-option -g status-style 'bg=default,fg=#ffffff'
|
set-option -g status-style 'bg=default,fg=#ffffff'
|
||||||
set-option -g status-justify centre
|
set-option -g status-justify left
|
||||||
set-option -g status-left '#h '
|
set-option -g status-left ''
|
||||||
set-window-option -g window-status-style 'fg=#ffffff,bg=default'
|
set-window-option -g window-status-style 'fg=#ffffff,bg=default'
|
||||||
set-option -g window-status-format ' #I:#W '
|
set-option -g window-status-format ' #I:#W '
|
||||||
set-window-option -g window-status-current-style 'fg=#111111,bg=#7aa2f7'
|
set-window-option -g window-status-current-style 'fg=#111111,bg=#7aa2f7'
|
||||||
set-option -g window-status-current-format ' #I:#W#{?window_zoomed_flag, , } '
|
set-option -g window-status-current-format ' #I:#W#{?window_zoomed_flag, , } '
|
||||||
|
|
||||||
set-option -g status-left "#{hostname_short}/#S"
|
set-option -g status-right "#{hostname_short}/#S %H:%M #{tmux_mode_indicator}"
|
||||||
set-option -g status-right "%H:%M #{tmux_mode_indicator}"
|
|
||||||
|
|
||||||
# ╭──────────────────────────────────────────────────────────╮
|
# ╭──────────────────────────────────────────────────────────╮
|
||||||
# │ Plugins related configurations │
|
# │ Plugins related configurations │
|
||||||
|
|||||||
@@ -2,4 +2,6 @@ Include shared.d/*
|
|||||||
Include local.d/*
|
Include local.d/*
|
||||||
|
|
||||||
Host *
|
Host *
|
||||||
|
ServerAliveInterval 300 # send null packets every 5min to keep connection alive
|
||||||
|
ServerAliveCountMax 2 # if the server doesn't respond 2 times, it's gone so give up
|
||||||
# IdentityAgent "~/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock"
|
# IdentityAgent "~/Library/Group Containers/2BUA8C4S2C.com.1password/t/agent.sock"
|
||||||
|
|||||||
Reference in New Issue
Block a user