mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-02-23 21:56:33 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d4972ea30d | |||
| ed7263dfee | |||
| 4cda063305 | |||
| d251ea9cdc |
@@ -8,11 +8,11 @@ editorconfig-checker 2.8.0
|
|||||||
eza 0.19.0
|
eza 0.19.0
|
||||||
fd 10.1.0
|
fd 10.1.0
|
||||||
github-cli 2.54.0
|
github-cli 2.54.0
|
||||||
golang 1.22.6
|
golang 1.23.0
|
||||||
hadolint 2.12.0
|
hadolint 2.12.0
|
||||||
kubectl 1.30.3
|
kubectl 1.31.0
|
||||||
lazygit 0.43.1
|
lazygit 0.43.1
|
||||||
nodejs 22.6.0
|
nodejs 22.4.1
|
||||||
pipx 1.6.0
|
pipx 1.6.0
|
||||||
pre-commit 3.8.0
|
pre-commit 3.8.0
|
||||||
ripgrep 14.1.0
|
ripgrep 14.1.0
|
||||||
@@ -24,6 +24,6 @@ shfmt 3.8.0
|
|||||||
terraform-lsp 0.0.12
|
terraform-lsp 0.0.12
|
||||||
terragrunt 0.66.3
|
terragrunt 0.66.3
|
||||||
tf-summarize 0.3.10
|
tf-summarize 0.3.10
|
||||||
vault 1.17.3
|
vault 1.17.3+ent
|
||||||
yamllint 1.35.1
|
yamllint 1.35.1
|
||||||
yq 4.44.3
|
yq 4.44.3
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ load_antigen()
|
|||||||
|
|
||||||
antigen use oh-my-zsh
|
antigen use oh-my-zsh
|
||||||
|
|
||||||
export ZSH_TMUX_AUTOSTART=true
|
export ZSH_TMUX_AUTOSTART=false
|
||||||
export ZSH_TMUX_CONFIG="$DOTFILES/config/tmux/tmux.conf"
|
export ZSH_TMUX_CONFIG="$DOTFILES/config/tmux/tmux.conf"
|
||||||
export ZSH_TMUX_UNICODE=true
|
export ZSH_TMUX_UNICODE=true
|
||||||
export ZSH_TMUX_AUTOQUIT=false
|
export ZSH_TMUX_AUTOQUIT=false
|
||||||
|
|||||||
@@ -459,3 +459,13 @@ msg "Setting up miscellaneous configuration"
|
|||||||
export CHEAT_USE_FZF=true
|
export CHEAT_USE_FZF=true
|
||||||
export SQLITE_HISTORY="${XDG_CACHE_HOME}/sqlite_history"
|
export SQLITE_HISTORY="${XDG_CACHE_HOME}/sqlite_history"
|
||||||
|
|
||||||
|
X_EXPORTS_FILES=(
|
||||||
|
"$HOME/.config/exports-secret"
|
||||||
|
"$HOME/.config/exports-$(hostname)"
|
||||||
|
"$HOME/.config/exports-$(hostname)-secret"
|
||||||
|
)
|
||||||
|
for exportFile in "${X_EXPORTS_FILES[@]}"; do
|
||||||
|
[ -f "$exportFile" ] && source "$exportFile" && msg "Sourced $exportFile"
|
||||||
|
done
|
||||||
|
unset X_EXPORTS_FILES
|
||||||
|
|
||||||
|
|||||||
@@ -11,6 +11,8 @@ config.window_background_opacity = 0.97
|
|||||||
-- Don't show tab bar
|
-- Don't show tab bar
|
||||||
config.enable_tab_bar = false
|
config.enable_tab_bar = false
|
||||||
|
|
||||||
|
config.send_composed_key_when_left_alt_is_pressed = true
|
||||||
|
|
||||||
-- Function to detect the theme based on appearance
|
-- Function to detect the theme based on appearance
|
||||||
function Scheme_for_appearance(appearance)
|
function Scheme_for_appearance(appearance)
|
||||||
if appearance:find("Dark") then
|
if appearance:find("Dark") then
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ CONFIG_HOST="$(hostname -s)"
|
|||||||
# Enable debugging if requested
|
# Enable debugging if requested
|
||||||
[ "$DEBUG" = "1" ] && set -x
|
[ "$DEBUG" = "1" ] && set -x
|
||||||
|
|
||||||
CONFIG_PATH="${DOTFILES}/config"
|
CONFIG_PATH="${HOME}/.config"
|
||||||
|
|
||||||
[ -d "$DOTFILES" ] || {
|
[ -d "$DOTFILES" ] || {
|
||||||
msg_err "Error: DOTFILES is not set or $DOTFILES does not exist"
|
msg_err "Error: DOTFILES is not set or $DOTFILES does not exist"
|
||||||
|
|||||||
Reference in New Issue
Block a user