mirror of
https://github.com/Stunkymonkey/dotfiles.git
synced 2026-03-13 03:24:06 +01:00
Compare commits
No commits in common. "5a4a1488875094b362faab38780fe65f481f2e2d" and "e0ea620d3a47ce8ad4617450faf9769d6b7d7255" have entirely different histories.
5a4a148887
...
e0ea620d3a
7 changed files with 1 additions and 70 deletions
9
.gitmodules
vendored
9
.gitmodules
vendored
|
|
@ -52,12 +52,3 @@
|
|||
[submodule "vim/start/vim-polyglot"]
|
||||
path = vim/start/vim-polyglot
|
||||
url = https://github.com/sheerun/vim-polyglot.git
|
||||
[submodule "zsh/zsh-autosuggestions"]
|
||||
path = zsh/zsh-autosuggestions
|
||||
url = https://github.com/zsh-users/zsh-autosuggestions.git
|
||||
[submodule "zsh/zsh-syntax-highlighting"]
|
||||
path = zsh/zsh-syntax-highlighting
|
||||
url = https://github.com/zsh-users/zsh-syntax-highlighting.git
|
||||
[submodule "zsh/oh-my-zsh"]
|
||||
path = zsh/oh-my-zsh
|
||||
url = https://github.com/ohmyzsh/ohmyzsh.git
|
||||
|
|
|
|||
|
|
@ -56,10 +56,6 @@
|
|||
~/.wgetrc: wget/wgetrc
|
||||
~/.config/yay/config.json: yay/config.json
|
||||
~/.Xresources: i3/Xresources
|
||||
~/.zshrc: zsh/zshrc
|
||||
~/.oh-my-zsh: zsh/oh-my-zsh
|
||||
~/.zsh-syntax-highlighting: zsh/zsh-syntax-highlighting
|
||||
~/.zsh-autosuggestions: zsh/zsh-autosuggestions
|
||||
|
||||
# graphic
|
||||
- link:
|
||||
|
|
|
|||
|
|
@ -97,21 +97,7 @@ alias aur-update='yay -Syua'
|
|||
|
||||
# NIX:
|
||||
alias nix-list-results='ls -l /nix/var/nix/gcroots/auto/'
|
||||
nixpkgs-build() {
|
||||
if [[ $# -lt 1 ]]; then
|
||||
echo "Usage: nixpkgs-build <package> [parameters...]"
|
||||
return 1
|
||||
fi
|
||||
|
||||
local pkg="$1"
|
||||
shift
|
||||
|
||||
if command -v nom >/dev/null 2>&1; then
|
||||
nom build ".#$pkg" "$@"
|
||||
else
|
||||
nix build ".#$pkg" "$@"
|
||||
fi
|
||||
}
|
||||
alias nixpkgs-build='nix-build . -A'
|
||||
alias nixpkgs-review-fast-merge='nixpkgs-review post-result && nixpkgs-review approve && nixpkgs-review merge'
|
||||
|
||||
# DOTFILES:
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 35068db8373917a23eb9e3dabeb6596348e6534c
|
||||
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 85919cd1ffa7d2d5412f6d3fe437ebdbeeec4fc5
|
||||
|
|
@ -1 +0,0 @@
|
|||
Subproject commit 5eb677bb0fa9a3e60f0eff031dc13926e093df92
|
||||
39
zsh/zshrc
39
zsh/zshrc
|
|
@ -1,39 +0,0 @@
|
|||
# Path to your oh-my-zsh installation.
|
||||
export ZSH=~/.oh-my-zsh
|
||||
fpath=( ~/.zcomplete "${fpath[@]}" )
|
||||
|
||||
ZSH_THEME=""
|
||||
|
||||
CASE_SENSITIVE="true"
|
||||
DISABLE_AUTO_UPDATE="true"
|
||||
DISABLE_LS_COLORS="false"
|
||||
DISABLE_AUTO_TITLE="true"
|
||||
ENABLE_CORRECTION="false"
|
||||
COMPLETION_WAITING_DOTS="true"
|
||||
DISABLE_UNTRACKED_FILES_DIRTY="true"
|
||||
HIST_STAMPS="yyyy-mm-dd"
|
||||
# Would you like to use another custom folder than $ZSH/custom?
|
||||
# ZSH_CUSTOM=/path/to/new-custom-folder
|
||||
plugins=(
|
||||
colored-man-pages
|
||||
common-aliases
|
||||
sudo
|
||||
)
|
||||
source $ZSH/oh-my-zsh.sh
|
||||
|
||||
alias reload=". ~/.zshrc"
|
||||
|
||||
ZSH_AUTOSUGGEST_STRATEGY=(history)
|
||||
source ~/.zsh-autosuggestions/zsh-autosuggestions.zsh
|
||||
# Ctrl+Space
|
||||
bindkey '^ ' autosuggest-accept
|
||||
|
||||
source ~/.zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||
|
||||
source ~/.profile.d/load
|
||||
|
||||
if type kubectl &>/dev/null; then
|
||||
source <(kubectl completion zsh)
|
||||
fi
|
||||
|
||||
RPROMPT='[%*]'
|
||||
Loading…
Add table
Add a link
Reference in a new issue