From cedc8b8469b441b79451e455405665ace184e86d Mon Sep 17 00:00:00 2001 From: Russell Riker Date: Sat, 22 Oct 2022 10:21:31 -0400 Subject: [PATCH 1/2] fixed the miss spelling in the link to .bash_aliases --- mysetup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mysetup.sh b/mysetup.sh index cfe0453..5f2f711 100755 --- a/mysetup.sh +++ b/mysetup.sh @@ -23,7 +23,7 @@ #bash files echo "Linking bash config files" ln -fs ~/mydev/my-dotfiles/.bashrc ~/.bashrc -ln -fs ~/mydev/my-dotfiles/.bash_alias ~/.bash_alias +ln -fs ~/mydev/my-dotfiles/.bash_aliases ~/.bash_aliases ln -fs ~/mydev/my-dotfiles/.bash_logout ~/.bash_logout #profile From e1828b9d6b58ce48065116f36fc9a3c0fc951cbc Mon Sep 17 00:00:00 2001 From: Russell Riker Date: Sun, 13 Nov 2022 21:13:41 +0000 Subject: [PATCH 2/2] added sudo alias for tilde, removed nvim plugin --- .bash_aliases | 7 +++++++ plugins-to-load.vim | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.bash_aliases b/.bash_aliases index ce7091f..543d8fe 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -61,3 +61,10 @@ alias aptin='sudo apt install' # fun stuff alias cowls='ls|cowsay|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 + diff --git a/plugins-to-load.vim b/plugins-to-load.vim index c3ca32d..ab7338a 100644 --- a/plugins-to-load.vim +++ b/plugins-to-load.vim @@ -3,7 +3,7 @@ " *********************************************************** " call plug#begin('~/.vim/plugged') - Plug 'SirVer/ultisnips' +" Plug 'SirVer/ultisnips' " Plug 'honza/vim-snippets' Plug 'preservim/nerdtree' " file manager Plug 'roxma/nvim-yarp'