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-rust-analyzer',
|
||||||
\'coc-sh',
|
\'coc-sh',
|
||||||
\'coc-sql',
|
\'coc-sql',
|
||||||
\'coc-markdownlint',
|
\'coc-yaml',
|
||||||
\]
|
\]
|
||||||
|
|
||||||
" navigate between errors quickly
|
" navigate between errors quickly
|
||||||
|
|
|
@ -5,6 +5,6 @@
|
||||||
[credential]
|
[credential]
|
||||||
helper = store --file ~/.git-credentials
|
helper = store --file ~/.git-credentials
|
||||||
[commit]
|
[commit]
|
||||||
gpgsign = true
|
gpgsign = false
|
||||||
[init]
|
[init]
|
||||||
defaultBranch = master
|
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 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 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 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
|
### ZSH HOME
|
||||||
export ZSH=$HOME/.zsh-server
|
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;
|
function cachekeys () { exec 2>/dev/null;
|
||||||
eval $(ssh-agent)
|
eval $(ssh-agent)
|
||||||
ssh-add ~/.ssh/id_rsa
|
ssh-add ~/.ssh/id_rsa
|
||||||
|
function newpass() {
|
||||||
|
LC_ALL=C tr -dc '[:alnum:]' < /dev/urandom | head -c${1:-$0}
|
||||||
}
|
}
|
||||||
|
|
||||||
### ZSH HOME
|
### ZSH HOME
|
||||||
|
|
Loading…
Reference in New Issue