Compare commits
40 Commits
main
...
desktop/co
Author | SHA1 | Date |
---|---|---|
LordMathis | cfa8d2dad8 | |
LordMathis | 3ac73d2f43 | |
LordMathis | 7afca9cf36 | |
LordMathis | 80ab09569f | |
LordMathis | 9f334fa2df | |
LordMathis | 22eeb9574a | |
LordMathis | 6b7228e0bc | |
LordMathis | 40af373639 | |
Matus Namesny | fed924fc12 | |
Matus Namesny | 9e3585905c | |
Matus Namesny | d310513ed2 | |
Matus Namesny | 634232ed31 | |
Mathis | a2cf22d8b3 | |
Mathis | e1b2481e02 | |
LordMathis | d38bf5efb0 | |
LordMathis | c1b6d9b449 | |
LordMathis | 13f5504315 | |
Mathis | 390f5a92c5 | |
Mathis | 6ebfab0d8c | |
Mathis | dd4c17edf9 | |
Matus Namesny | 179a26cb22 | |
Matus Namesny | b2f4efe7cc | |
Matus Namesny | 2208396599 | |
Matus Namesny | 79836a8756 | |
Matus Namesny | e5c66ea869 | |
Matus Namesny | a910b5bc3d | |
Mathis | 2ed347eae0 | |
Mathis | 3e2cfb1eb3 | |
Mathis | 21ec9f2715 | |
LordMathis | 7cf8537c07 | |
Mathis | 3fa61caa71 | |
Mathis | 92e66e0ebe | |
Mathis | 486b197f6d | |
Mathis | 404caa0668 | |
Mathis | 4ebff671a2 | |
Mathis | d40acd2516 | |
Mathis | 30d6d36e9c | |
Mathis | c4022d84f9 | |
Mathis | 80e20aa00f | |
Mathis | abf0e0bb5c |
|
@ -0,0 +1,16 @@
|
||||||
|
alias mkdir='mkdir -p'
|
||||||
|
|
||||||
|
alias vim='nvim'
|
||||||
|
|
||||||
|
alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
|
||||||
|
|
||||||
|
alias doco='docker-compose'
|
||||||
|
alias dops='docker ps -a'
|
||||||
|
alias doe='docker exec'
|
||||||
|
alias dol='docker logs -f'
|
||||||
|
|
||||||
|
alias sudo='sudo '
|
||||||
|
|
||||||
|
open () {
|
||||||
|
xdg-open "$@" &>/dev/null
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
alias cat='bat'
|
||||||
|
alias update='yay -Syu'
|
|
@ -0,0 +1,2 @@
|
||||||
|
alias cat='batcat'
|
||||||
|
alias update='sudo apt-get update && sudo apt-get upgrade'
|
|
@ -0,0 +1,15 @@
|
||||||
|
[submodule ".zsh/ohmyzsh"]
|
||||||
|
path = .zsh/ohmyzsh
|
||||||
|
url = https://github.com/ohmyzsh/ohmyzsh.git
|
||||||
|
[submodule ".zsh/zsh-syntax-highlighting"]
|
||||||
|
path = .zsh/zsh-syntax-highlighting
|
||||||
|
url = https://github.com/zsh-users/zsh-syntax-highlighting.git
|
||||||
|
[submodule ".zsh/zsh-autosuggestions"]
|
||||||
|
path = .zsh/zsh-autosuggestions
|
||||||
|
url = https://github.com/zsh-users/zsh-autosuggestions.git
|
||||||
|
[submodule ".zsh/zsh-completions"]
|
||||||
|
path = .zsh/zsh-completions
|
||||||
|
url = https://github.com/zsh-users/zsh-completions.git
|
||||||
|
[submodule ".zsh/zsh-history-substring-search"]
|
||||||
|
path = .zsh/zsh-history-substring-search
|
||||||
|
url = https://github.com/zsh-users/zsh-history-substring-search
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 3fd63fdf01344bb5f5f13a9c33eb0b7a72fe4771
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit a411ef3e0992d4839f0732ebeb9823024afaaaa8
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 828fe2bd3c67123263fc8a8cadebae92e10a2224
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 400e58a87f72ecec14f783fbd29bc6be4ff1641c
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 754cefe0181a7acd42fdcb357a67d0217291ac47
|
|
@ -0,0 +1,106 @@
|
||||||
|
source $HOME/.aliases
|
||||||
|
|
||||||
|
# Set $PATH
|
||||||
|
export PATH=$HOME/bin:$PATH
|
||||||
|
|
||||||
|
# Set Golang
|
||||||
|
export PATH=$PATH:/usr/local/go/bin
|
||||||
|
export GOPATH=$HOME/Projects/golang
|
||||||
|
export PATH=$PATH:$GOPATH/bin
|
||||||
|
|
||||||
|
# History
|
||||||
|
export HISTFILE=$HOME/.zsh_history
|
||||||
|
export HISTSIZE=15000 # keep 15,000 lines in memory
|
||||||
|
export SAVEHIST=10000 # but save only 10,000 of them
|
||||||
|
export HISTORY_SUBSTRING_SEARCH_ENSURE_UNIQUE=true
|
||||||
|
|
||||||
|
# ohmyzsh cache dir
|
||||||
|
export ZSH_CACHE_DIR=$HOME/.zsh/cache
|
||||||
|
mkdir -p "$ZSH_CACHE_DIR/completions"
|
||||||
|
|
||||||
|
# Editor
|
||||||
|
export EDITOR=nvim
|
||||||
|
export GIT_EDITOR=nvim
|
||||||
|
|
||||||
|
# VTE
|
||||||
|
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
|
||||||
|
source /etc/profile.d/vte.sh
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Distro specific aliases
|
||||||
|
DISTRO=`cat /etc/os-release | grep ^ID= | cut -f2 -d'='`
|
||||||
|
if [ "$DISTRO" = 'arch' ]; then
|
||||||
|
source $HOME/.aliases_arch
|
||||||
|
else
|
||||||
|
source $HOME/.aliases_ubuntu
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Conda
|
||||||
|
__conda_setup="$('/home/matus/bin/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)"
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
eval "$__conda_setup"
|
||||||
|
else
|
||||||
|
if [ -f "/home/matus/bin/anaconda3/etc/profile.d/conda.sh" ]; then
|
||||||
|
. "/home/matus/bin/anaconda3/etc/profile.d/conda.sh"
|
||||||
|
else
|
||||||
|
export PATH="/home/matus/bin/anaconda3/bin:$PATH"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
unset __conda_setup
|
||||||
|
|
||||||
|
# Node Version Manager
|
||||||
|
|
||||||
|
lazynvm() {
|
||||||
|
unset -f nvm node npm
|
||||||
|
export NVM_DIR=~/.nvm
|
||||||
|
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
|
||||||
|
}
|
||||||
|
|
||||||
|
nvm() {
|
||||||
|
lazynvm
|
||||||
|
nvm $@
|
||||||
|
}
|
||||||
|
|
||||||
|
node() {
|
||||||
|
lazynvm
|
||||||
|
node $@
|
||||||
|
}
|
||||||
|
|
||||||
|
npm() {
|
||||||
|
lazynvm
|
||||||
|
npm $@
|
||||||
|
}
|
||||||
|
|
||||||
|
# Compinit
|
||||||
|
autoload -Uz compinit
|
||||||
|
compinit
|
||||||
|
|
||||||
|
# ZSH Plugins
|
||||||
|
|
||||||
|
## Oh My Zsh
|
||||||
|
source ~/.zsh/ohmyzsh/plugins/pip/pip.plugin.zsh
|
||||||
|
source ~/.zsh/ohmyzsh/plugins/command-not-found/command-not-found.plugin.zsh
|
||||||
|
source ~/.zsh/ohmyzsh/plugins/docker/_docker
|
||||||
|
source ~/.zsh/ohmyzsh/plugins/docker-compose/docker-compose.plugin.zsh
|
||||||
|
source ~/.zsh/ohmyzsh/plugins/git/git.plugin.zsh
|
||||||
|
source ~/.zsh/ohmyzsh/plugins/golang/golang.plugin.zsh
|
||||||
|
source ~/.zsh/ohmyzsh/plugins/helm/helm.plugin.zsh
|
||||||
|
source ~/.zsh/ohmyzsh/plugins/jsontools/jsontools.plugin.zsh
|
||||||
|
source ~/.zsh/ohmyzsh/plugins/kubectl/kubectl.plugin.zsh
|
||||||
|
source ~/.zsh/ohmyzsh/plugins/sudo/sudo.plugin.zsh
|
||||||
|
|
||||||
|
### Prompt Theme
|
||||||
|
source ~/.zsh/ohmyzsh/themes/gentoo.zsh-theme
|
||||||
|
|
||||||
|
## zsh-users
|
||||||
|
source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
|
||||||
|
source ~/.zsh/zsh-completions/zsh-completions.plugin.zsh
|
||||||
|
source ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||||
|
source ~/.zsh/zsh-history-substring-search/zsh-history-substring-search.zsh
|
||||||
|
|
||||||
|
# Set Prompt
|
||||||
|
setopt promptsubst
|
||||||
|
|
||||||
|
# Bindkeys
|
||||||
|
bindkey '^[[A' history-substring-search-up
|
||||||
|
bindkey '^[[B' history-substring-search-down
|
19
README.md
19
README.md
|
@ -1,19 +0,0 @@
|
||||||
# Dotfiles
|
|
||||||
|
|
||||||
My dotfiles. If you want to use them fork or clone the repo. Each branch has specific dotfiles for one of my machines
|
|
||||||
|
|
||||||
## Requirements
|
|
||||||
|
|
||||||
* [git](https://git-scm.com/), [zsh](http://www.zsh.org/) and [bat](https://github.com/sharkdp/bat)
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
* `echo ".dotfiles" >> .gitignore`
|
|
||||||
* `git clone --bare git@git.namesny.com:Mathis/dotfiles.git $HOME/.dotfiles`
|
|
||||||
* `alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'`
|
|
||||||
* `config submodule init`
|
|
||||||
* `config submodule update`
|
|
||||||
* `config checkout`
|
|
||||||
* `source .zshrc`
|
|
||||||
|
|
||||||
## [Full Guide](https://developer.atlassian.com/blog/2016/02/best-way-to-store-dotfiles-git-bare-repo/)
|
|
Loading…
Reference in New Issue