Compare commits
7 Commits
b6c618a076
...
160e2dcd53
Author | SHA1 | Date |
---|---|---|
Mathis | 160e2dcd53 | |
LordMathis | 7242e16f3c | |
LordMathis | 135868fef8 | |
LordMathis | b6abc2f53b | |
LordMathis | ea9b7ae725 | |
Mathis | 1cb5abf8fe | |
LordMathis | 1f363ba718 |
2
.aliases
2
.aliases
|
@ -1,5 +1,5 @@
|
|||
alias mkdir='mkdir -p'
|
||||
alias cat='bat'
|
||||
alias cat='batcat'
|
||||
|
||||
alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
|
||||
|
||||
|
|
|
@ -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
|
27
.profile
27
.profile
|
@ -1,27 +0,0 @@
|
|||
# ~/.profile: executed by the command interpreter for login shells.
|
||||
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
|
||||
# exists.
|
||||
# see /usr/share/doc/bash/examples/startup-files for examples.
|
||||
# the files are located in the bash-doc package.
|
||||
|
||||
# the default umask is set in /etc/profile; for setting the umask
|
||||
# for ssh logins, install and configure the libpam-umask package.
|
||||
#umask 022
|
||||
|
||||
# if running bash
|
||||
if [ -n "$BASH_VERSION" ]; then
|
||||
# include .bashrc if it exists
|
||||
if [ -f "$HOME/.bashrc" ]; then
|
||||
. "$HOME/.bashrc"
|
||||
fi
|
||||
fi
|
||||
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
if [ -d "$HOME/bin" ] ; then
|
||||
PATH="$HOME/bin:$PATH"
|
||||
fi
|
||||
|
||||
# set PATH so it includes user's private bin if it exists
|
||||
if [ -d "$HOME/.local/bin" ] ; then
|
||||
PATH="$HOME/.local/bin:$PATH"
|
||||
fi
|
9
.vimrc
9
.vimrc
|
@ -1,9 +0,0 @@
|
|||
syntax on
|
||||
|
||||
filetype plugin indent on
|
||||
" show existing tab with 2 spaces width
|
||||
set tabstop=2
|
||||
" when indenting with '>', use 2 spaces width
|
||||
set shiftwidth=2
|
||||
" On pressing tab, insert 2 spaces
|
||||
set expandtab
|
|
@ -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
|
68
.zshrc
68
.zshrc
|
@ -1,30 +1,58 @@
|
|||
source $HOME/.antigen.zsh
|
||||
source $HOME/.aliases
|
||||
|
||||
# Set $PATH
|
||||
export PATH=$HOME/bin:$PATH
|
||||
|
||||
# Load the oh-my-zsh's library.
|
||||
antigen use oh-my-zsh
|
||||
# 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
|
||||
|
||||
# Bundles from the default repo (robbyrussell's oh-my-zsh).
|
||||
antigen bundle git
|
||||
antigen bundle heroku
|
||||
antigen bundle pip
|
||||
antigen bundle lein
|
||||
antigen bundle command-not-found
|
||||
# Editor
|
||||
export EDITOR=nvim
|
||||
export GIT_EDITOR=nvim
|
||||
|
||||
# Syntax highlighting bundle.
|
||||
antigen bundle zsh-users/zsh-syntax-highlighting
|
||||
antigen bundle zsh-users/zsh-autosuggestions
|
||||
# ohmyzsh cache dir
|
||||
export ZSH_CACHE_DIR=$HOME/.zsh/cache
|
||||
mkdir -p "$ZSH_CACHE_DIR/completions"
|
||||
|
||||
# Load the theme.
|
||||
antigen theme gentoo
|
||||
# k3s kubeconfig
|
||||
export KUBECONFIG=/etc/rancher/k3s/k3s.yaml
|
||||
|
||||
# Tell Antigen that you're done.
|
||||
antigen apply
|
||||
# Compinit
|
||||
autoload -Uz compinit
|
||||
compinit
|
||||
|
||||
# VTE
|
||||
if [ $TILIX_ID ] || [ $VTE_VERSION ]; then
|
||||
source /etc/profile.d/vte.sh
|
||||
fi
|
||||
# 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
|
||||
|
||||
# Kubectl completions fix
|
||||
source <(kubectl completion zsh)
|
||||
|
||||
# Bindkeys
|
||||
bindkey '^[[A' history-substring-search-up
|
||||
bindkey '^[[B' history-substring-search-down
|
Loading…
Reference in New Issue