Probs dont need but..
I hereby claim:
- I am curtismckee on github.
- I am curtismckee (https://keybase.io/curtismckee) on keybase.
- I have a public key ASBTYxY_qV7dBDqCMZ-7w7bLDNSS4u_gfpvcfrcQFwLIwQo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nnoremap <silent> <leader>e :call Fzf_dev()<CR> | |
" ripgrep | |
if executable('rg') | |
let $FZF_DEFAULT_COMMAND = 'rg --files --hidden --follow --glob "!.git/*"' | |
set grepprg=rg\ --vimgrep | |
command! -bang -nargs=* Find call fzf#vim#grep('rg --column --line-number --no-heading --fixed-strings --ignore-case --hidden --follow --glob "!.git/*" --color "always" '.shellescape(<q-args>).'| tr -d "\017"', 1, <bang>0) | |
endif | |
" Files + devicons |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.github-corner:hover .octo-arm { | |
animation: octocat-wave 560ms ease-in-out | |
} | |
.github-corner svg { | |
fill: gray; | |
color: #fff; | |
} | |
.github-corner:hover svg { |
git stash list
- Lists all stashes on stack.
git stash apply stash@{0}
- Applies the changes from stash but does not delete from stack.
git stash pop stash@{3}
- Applies the changes from stash and deletes from the stack.
git stash -m "Message goes here." -- $(git diff --staged --name-only)
- Installing
Add User:
useradd -m -g [group] -G [additional_group] [username]
The
-m
flag creates /home directory for user
Expire User:
usermod --expiredate [YYYY-MM-DD] [username]
If user try to login, he or she will get the following message:
Your account has expired; please contact your system administrator Authentication failure
NewerOlder