2021-05-03 02:21:39 +02:00
|
|
|
[ ! -d ~/.oh-my-zsh ] && sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
|
2021-09-01 20:51:14 +02:00
|
|
|
ZSH=$HOME/.oh-my-zsh
|
|
|
|
ZSH_CACHE_DIR="$ZSH/cache"
|
2021-05-03 02:21:39 +02:00
|
|
|
|
2022-07-03 11:58:53 +02:00
|
|
|
[ -z "$IN_NIX_SHELL" ] && . $HOME/.asdf/asdf.sh
|
2022-03-25 23:57:54 +01:00
|
|
|
# necessary to include "/usr/share/zsh/"$(zsh --version| cut -d ' ' -f2)/functions"
|
|
|
|
# due to a breakage on fedora zsh version 5.8.1 (zsh.x86_64 5.8.1-1.fc35 @updates)
|
|
|
|
fpath=(
|
2022-07-03 12:00:42 +02:00
|
|
|
~/.zfunc
|
2022-03-25 23:57:54 +01:00
|
|
|
~/.local/share/zsh/site-functions
|
2022-07-03 12:00:42 +02:00
|
|
|
${ASDF_DIR}/completions
|
2022-03-25 23:57:54 +01:00
|
|
|
/usr/share/zsh/"$(zsh --version| cut -d ' ' -f2)/functions"
|
|
|
|
$fpath
|
|
|
|
)
|
|
|
|
|
|
|
|
eval "$(sheldon source)"
|
2019-11-19 01:21:43 +01:00
|
|
|
|
2019-04-29 00:37:34 +02:00
|
|
|
# Uncomment the following line to use case-sensitive completion.
|
|
|
|
# CASE_SENSITIVE="true"
|
|
|
|
|
|
|
|
# Uncomment the following line to use hyphen-insensitive completion. Case
|
|
|
|
# sensitive completion must be off. _ and - will be interchangeable.
|
|
|
|
HYPHEN_INSENSITIVE="true"
|
|
|
|
|
|
|
|
# Uncomment the following line to disable bi-weekly auto-update checks.
|
|
|
|
# DISABLE_AUTO_UPDATE="true"
|
|
|
|
|
2019-11-19 01:21:43 +01:00
|
|
|
# Uncomment the following line to automatically update without prompting.
|
|
|
|
DISABLE_UPDATE_PROMPT="true"
|
|
|
|
|
2019-04-29 00:37:34 +02:00
|
|
|
# Uncomment the following line to change how often to auto-update (in days).
|
2021-09-01 20:51:14 +02:00
|
|
|
UPDATE_ZSH_DAYS=3
|
2019-04-29 00:37:34 +02:00
|
|
|
|
|
|
|
# Uncomment the following line to disable colors in ls.
|
|
|
|
# DISABLE_LS_COLORS="true"
|
|
|
|
|
2021-02-04 22:43:56 +01:00
|
|
|
DISABLE_MAGIC_FUNCTIONS="false"
|
2020-10-05 18:36:42 +02:00
|
|
|
|
2019-04-29 00:37:34 +02:00
|
|
|
# Uncomment the following line to disable auto-setting terminal title.
|
|
|
|
# DISABLE_AUTO_TITLE="true"
|
|
|
|
|
|
|
|
# Uncomment the following line to enable command auto-correction.
|
2020-10-05 18:36:42 +02:00
|
|
|
ENABLE_CORRECTION="false"
|
2019-04-29 00:37:34 +02:00
|
|
|
|
|
|
|
# Uncomment the following line to display red dots whilst waiting for completion.
|
|
|
|
COMPLETION_WAITING_DOTS="true"
|
|
|
|
|
|
|
|
# Uncomment the following line if you want to disable marking untracked files
|
|
|
|
# under VCS as dirty. This makes repository status check for large repositories
|
|
|
|
# much, much faster.
|
2020-03-01 02:46:50 +01:00
|
|
|
DISABLE_UNTRACKED_FILES_DIRTY="true"
|
2019-04-29 00:37:34 +02:00
|
|
|
|
2022-03-26 02:14:00 +01:00
|
|
|
MAILCHECK=0
|
|
|
|
|
|
|
|
# allow tab completion in the middle of a word
|
|
|
|
setopt COMPLETE_IN_WORD
|
|
|
|
# keep backgroud processess at full speed
|
|
|
|
setopt NOBGNICE
|
|
|
|
|
2021-12-07 02:26:39 +01:00
|
|
|
setopt inc_append_history
|
|
|
|
setopt extended_history
|
2019-04-29 00:37:34 +02:00
|
|
|
# Uncomment the following line if you want to change the command execution time
|
|
|
|
# stamp shown in the history command output.
|
|
|
|
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
|
2021-09-01 20:51:14 +02:00
|
|
|
HIST_STAMPS="dd.mm.yyyy"
|
2019-11-19 01:21:43 +01:00
|
|
|
setopt share_history
|
|
|
|
setopt hist_ignore_dups
|
|
|
|
setopt hist_ignore_all_dups
|
|
|
|
setopt hist_save_no_dups
|
|
|
|
setopt hist_ignore_space
|
2021-09-01 20:51:14 +02:00
|
|
|
HISTCONTROL=ignoredups:erasedups
|
2019-04-29 00:37:34 +02:00
|
|
|
|
|
|
|
# Would you like to use another custom folder than $ZSH/custom?
|
|
|
|
# ZSH_CUSTOM=/path/to/new-custom-folder
|
|
|
|
|
2022-07-03 12:11:00 +02:00
|
|
|
plugins=(
|
|
|
|
git
|
|
|
|
gitignore
|
|
|
|
golang
|
|
|
|
safe-paste
|
|
|
|
systemd
|
|
|
|
terraform
|
|
|
|
lol
|
|
|
|
)
|
2019-04-29 00:37:34 +02:00
|
|
|
|
2019-05-02 01:13:32 +02:00
|
|
|
source $ZSH/oh-my-zsh.sh
|
2020-03-18 04:39:47 +01:00
|
|
|
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern cursor)
|
2019-05-15 03:24:13 +02:00
|
|
|
|
2021-02-04 22:43:56 +01:00
|
|
|
ZSH_AUTOSUGGEST_STRATEGY=(history completion)
|
2020-03-18 04:39:47 +01:00
|
|
|
ZSH_AUTOSUGGEST_USE_ASYNC=
|
2019-11-19 01:21:43 +01:00
|
|
|
|
2021-05-03 02:32:40 +02:00
|
|
|
ZSH_THEME_GIT_PROMPT_CACHE=" "
|
|
|
|
|
2019-05-15 03:24:13 +02:00
|
|
|
# map Del escape sequence to actual Del key in all (n,i) modes to resemble vim instead of vi
|
2020-01-20 05:31:44 +01:00
|
|
|
bindkey -a '^[[3~' delete-char
|
2019-11-19 01:21:43 +01:00
|
|
|
# map arrow up/down to control fish-like history substring search and highlighting
|
|
|
|
bindkey '^[[A' history-substring-search-up
|
|
|
|
bindkey '^[[B' history-substring-search-down
|
2022-07-03 12:04:48 +02:00
|
|
|
bindkey '^o' fzf-open
|
2022-03-26 01:20:55 +01:00
|
|
|
# also map the same keys in 'viins' (INSERT) mode...
|
|
|
|
bindkey -M viins '^[[A' history-substring-search-up
|
|
|
|
bindkey -M viins '^[[B' history-substring-search-down
|
2022-07-03 12:04:48 +02:00
|
|
|
bindkey -M viins '^o' fzf-open
|
2022-03-26 01:20:55 +01:00
|
|
|
# ...and in 'vicmd' (NORMAL) mode...
|
|
|
|
bindkey -M vicmd '^[[A' history-substring-search-up
|
|
|
|
bindkey -M vicmd '^[[B' history-substring-search-down
|
|
|
|
# ...and as well to K, J, instead of arrow up/down, respectively.
|
|
|
|
# note these are capital letters, original behaviour of j, k is left unchanged
|
|
|
|
bindkey -M vicmd 'K' history-substring-search-up
|
|
|
|
bindkey -M vicmd 'J' history-substring-search-down
|
2020-01-20 05:31:44 +01:00
|
|
|
HISTORY_SUBSTRING_SEARCH_FUZZY=" "
|
2019-05-15 03:24:13 +02:00
|
|
|
|
2022-07-03 12:13:23 +02:00
|
|
|
export FZF_DEFAULT_COMMAND="fd --type f --hidden --follow --exclude 'node_modules' ."
|
2022-03-26 01:20:55 +01:00
|
|
|
export FZF_CTRL_T_COMMAND="fd --follow --full-path --base-directory . --exclude '.git' --exclude 'node_modules' ."
|
|
|
|
export FZF_ALT_C_COMMAND="fd -H -t d ."
|
|
|
|
export DISABLE_FZF_AUTO_COMPLETION="true"
|
2020-04-09 05:43:15 +02:00
|
|
|
# Options to fzf command
|
2022-03-26 01:20:55 +01:00
|
|
|
export FZF_COMPLETION_OPTS='+c -x'
|
|
|
|
export FZF_DEFAULT_OPTS="--height=60% --inline-info --color=fg:#f8f8f2,bg:#282a36,hl:#bd93f9 --color=fg+:#f8f8f2,bg+:#44475a,hl+:#bd93f9 --color=info:#ffb86c,prompt:#50fa7b,pointer:#ff79c6 --color=marker:#ff79c6,spinner:#ffb86c,header:#6272a4"
|
|
|
|
export FZF_CTRL_T_OPTS="--preview 'bat --style=numbers --color=always --line-range :200 {}'"
|
|
|
|
|
|
|
|
zvm_after_init_commands+=('[ -f /usr/share/fzf/shell/key-bindings.zsh ] && source /usr/share/fzf/shell/key-bindings.zsh')
|
2020-04-09 05:43:15 +02:00
|
|
|
|
2019-04-29 00:37:34 +02:00
|
|
|
# User configuration
|
2020-10-05 18:36:42 +02:00
|
|
|
source ~/.dotenv
|
2022-04-03 22:34:17 +02:00
|
|
|
source ~/.zsh/aliases.zsh
|
2022-04-03 22:31:19 +02:00
|
|
|
source ~/.zsh/functions.zsh
|
2019-04-29 00:37:34 +02:00
|
|
|
|
|
|
|
# You may need to manually set your language environment
|
2021-09-01 20:51:14 +02:00
|
|
|
LANG=en_GB.UTF-8
|
|
|
|
http_proxy="http://localhost:8118"
|
2019-04-29 00:37:34 +02:00
|
|
|
|
2021-05-03 02:32:40 +02:00
|
|
|
if [ ! -S $HOME/.ssh/ssh_auth_sock ]; then
|
2020-06-11 23:02:44 +02:00
|
|
|
eval `ssh-agent` > /dev/null
|
2021-05-03 02:32:40 +02:00
|
|
|
ln -sf "$SSH_AUTH_SOCK" $HOME/.ssh/ssh_auth_sock
|
2020-06-11 23:02:44 +02:00
|
|
|
fi
|
2021-09-01 20:51:14 +02:00
|
|
|
SSH_AUTH_SOCK=$HOME/.ssh/ssh_auth_sock
|
2020-04-27 22:57:54 +02:00
|
|
|
|
2020-06-11 23:02:44 +02:00
|
|
|
|
2021-09-01 20:51:14 +02:00
|
|
|
EDITOR='vim'
|
|
|
|
TERM='xterm-256color'
|
2019-04-29 00:37:34 +02:00
|
|
|
# export ARCHFLAGS="-arch x86_64"
|
2021-09-01 20:51:14 +02:00
|
|
|
kee="surtur"
|
|
|
|
SSH_KEY_PATH="$HOME/.ssh/$kee"
|
2019-04-29 00:37:34 +02:00
|
|
|
|
2020-04-27 22:57:54 +02:00
|
|
|
eval $(TERM=xterm-256color dircolors)
|
2022-03-26 01:51:57 +01:00
|
|
|
|
2021-11-10 03:09:16 +01:00
|
|
|
export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/podman/podman.sock
|
|
|
|
|
2022-03-26 00:35:47 +01:00
|
|
|
if [ -z SSH_AGENT_PID ]; then
|
|
|
|
ssh-agent -s
|
|
|
|
if [ ! $(ssh-add -l | grep -q 'surtur (ED25519)') ]; then
|
|
|
|
agentssh
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2019-12-10 02:12:09 +01:00
|
|
|
|
2021-12-07 02:20:07 +01:00
|
|
|
eval "$(starship init zsh)"
|
2022-03-26 01:41:15 +01:00
|
|
|
|
2022-08-29 00:30:29 +02:00
|
|
|
# make home-manager not manage the shell configuration
|
|
|
|
HMVARSFILE="$HOME/.nix-profile/etc/profile.d/hm-session-vars.sh"
|
|
|
|
if [ -f "$HMVARSFILE" ]; then . "$HMVARSFILE"; fi
|
|
|
|
|
2022-03-26 01:41:15 +01:00
|
|
|
if [ -e ~/.nix-profile/etc/profile.d/nix.sh ]; then . ~/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer...and kept by me
|