Merge branch 'master' of https://git.cscherr.de/PlexSheep/configs into PlexSheep-master
This commit is contained in:
commit
122a56fcab
|
@ -14,7 +14,7 @@ let g:coc_global_extensions = [
|
|||
\'coc-rust-analyzer',
|
||||
\'coc-sh',
|
||||
\'coc-sql',
|
||||
\'coc-markdownlint',
|
||||
\'coc-yaml',
|
||||
\]
|
||||
|
||||
" navigate between errors quickly
|
||||
|
|
|
@ -5,6 +5,6 @@
|
|||
[credential]
|
||||
helper = store --file ~/.git-credentials
|
||||
[commit]
|
||||
gpgsign = true
|
||||
gpgsign = false
|
||||
[init]
|
||||
defaultBranch = master
|
||||
|
|
|
@ -29,6 +29,9 @@ alias gls=/bin/ls
|
|||
function largefiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(G|T|P|E)\s" }
|
||||
function midfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(M|G|T|P|E)\s" }
|
||||
function smallfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(B|K)\s" }
|
||||
function newpass() {
|
||||
LC_ALL=C tr -dc '[:alnum:]' < /dev/urandom | head -c${1:-$0}
|
||||
}
|
||||
|
||||
### ZSH HOME
|
||||
export ZSH=$HOME/.zsh-server
|
||||
|
|
|
@ -40,6 +40,8 @@ function smallfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(B|K)\s" }
|
|||
function cachekeys () { exec 2>/dev/null;
|
||||
eval $(ssh-agent)
|
||||
ssh-add ~/.ssh/id_rsa
|
||||
function newpass() {
|
||||
LC_ALL=C tr -dc '[:alnum:]' < /dev/urandom | head -c${1:-$0}
|
||||
}
|
||||
|
||||
### ZSH HOME
|
||||
|
|
Loading…
Reference in New Issue