added sudo alias for tilde, removed nvim plugin

This commit is contained in:
Russell Riker 2022-11-13 21:13:41 +00:00
parent cedc8b8469
commit e1828b9d6b
2 changed files with 8 additions and 1 deletions

View File

@ -61,3 +61,10 @@ alias aptin='sudo apt install'
# fun stuff # fun stuff
alias cowls='ls|cowsay|lolcat' alias cowls='ls|cowsay|lolcat'
#alias gaycow='cowsay $1|lolcat' #alias gaycow='cowsay $1|lolcat'
# Trying to make it so Ben doesn't have to email when I try to sudo on Tilde.team
if [ $HOSTNAME == 'tilde' ]
then
alias sudo="echo 'Wrong machine butt head'"
fi

View File

@ -3,7 +3,7 @@
" *********************************************************** " ***********************************************************
" "
call plug#begin('~/.vim/plugged') call plug#begin('~/.vim/plugged')
Plug 'SirVer/ultisnips' " Plug 'SirVer/ultisnips'
" Plug 'honza/vim-snippets' " Plug 'honza/vim-snippets'
Plug 'preservim/nerdtree' " file manager Plug 'preservim/nerdtree' " file manager
Plug 'roxma/nvim-yarp' Plug 'roxma/nvim-yarp'