From 721c9032933e01a563583d8c27f0546dbc3322bc Mon Sep 17 00:00:00 2001 From: Noah Masur Date: Sat, 28 Nov 2020 12:26:17 -0500 Subject: [PATCH] rewrite brew bundle file --- homebrew/Brewfile | 108 ++++++++++++++++++--------------------- nvim.configlink/init.vim | 1 + 2 files changed, 50 insertions(+), 59 deletions(-) diff --git a/homebrew/Brewfile b/homebrew/Brewfile index 14b14c7..808d6ff 100644 --- a/homebrew/Brewfile +++ b/homebrew/Brewfile @@ -1,63 +1,53 @@ # Homebrew Installations -brew "fish" # My shell -brew "neovim" # My editor -brew "git" # Latest git -brew "exa" # Better ls -brew "tmux" # Terminal panes and windows -brew "tealdeer" # Mini man page -brew "starship" # Shell prompt -brew "ripgrep" # Faster, better grep -brew "fzf" # Fuzzy finder -brew "fd" # Faster, better find -brew "sd" # Faster, better sed -brew "bat" # Better cat -brew "zoxide" # Better autojump -brew "jq" # JSON manipulation -brew "xsv" # CSV manipulation -brew "dos2unix" # File conversion -brew "trash" # Delete to trash -brew "wget" # Not quite curl -brew "telnet" # Check networking -brew "prettyping" # Better ping -brew "httpie" # Better curl -brew "nushell" # Data manipulation shell -brew "shellcheck" # Lint for bash -brew "python" # Latest version of Python -brew "poetry" # Project-based Python dependencies -brew "ruby" # Newer than default ruby -brew "ansible" # Deploy to local server -brew "terraform" # Deploy cloud infra -brew "node" # Ugh, nodejs (for Vim CoC) -brew "packer" # Build deployment images -brew "gpg" # Encryption -brew "qrencode" # Make a QR code -brew "youtube-dl" # Download YouTube videos -brew "googler" # Search Google -brew "gh" # GitHub commands -brew "pandoc" # Document converter -brew "awscli" # AWS API tools -brew "kubectl" # Kubernetes CLI - -# Personal -tap "nmasur/repo" # My repo -brew "nmasur/repo/drips" # Retrieve AWS IPs -brew "nmasur/repo/update-ssh-config" # Update .ssh/config - -# Experimental -tap "cjbassi/ytop" # Fancy system performance -brew "cjbassi/ytop/ytop" -brew "haskell-stack" # Latest version of Haskell -brew "noti" # Create system notifications -brew "kakoune" # Modal editor -brew "b2-tools" # BackBlaze B2 storage -brew "k9s" # Kubernetes TUI +tap "nmasur/repo" +tap "cjbassi/ytop" tap "superfly/tap" -brew "superfly/tap/flyctl" - -# Not Installed -# pulumi -# awscli -# saulpw/vd/visidata -# brew tap weaveworks/tap && brew install weaveworks/tap/eksctl (EKS on AWS) +brew "fish" # My shell +brew "neovim" # My editor +brew "git" # Latest git +brew "exa" # Better ls +brew "tmux" # Terminal panes and windows +brew "tealdeer" # Mini man page +brew "starship" # Shell prompt +brew "ripgrep" # Faster, better grep +brew "fzf" # Fuzzy finder +brew "fd" # Faster, better find +brew "sd" # Faster, better sed +brew "bat" # Better cat +brew "zoxide" # Better autojump +brew "jq" # JSON manipulation +brew "xsv" # CSV manipulation +brew "dos2unix" # File conversion +brew "trash" # Delete to trash +brew "wget" # Not quite curl +brew "telnet" # Check networking +brew "prettyping" # Better ping +brew "httpie" # Better curl +brew "nushell" # Data manipulation shell +brew "shellcheck" # Lint for bash +brew "python" # Latest version of Python +brew "poetry" # Project-based Python dependencies +brew "ruby" # Newer than default ruby +brew "ansible" # Deploy to local server +brew "terraform" # Deploy cloud infra +brew "node" # Ugh, nodejs (for Vim CoC) +brew "packer" # Build deployment images +brew "gpg" # Encryption +brew "qrencode" # Make a QR code +brew "youtube-dl" # Download YouTube videos +brew "googler" # Search Google +brew "gh" # GitHub commands +brew "pandoc" # Document converter +brew "awscli" # AWS API tools +brew "kubectl" # Kubernetes CLI +brew "cjbassi/ytop/ytop" # Fancy system performance +brew "haskell-stack" # Latest version of Haskell +brew "noti" # Create system notifications +brew "kakoune" # Modal editor +brew "b2-tools" # BackBlaze B2 storage +brew "k9s" # Kubernetes TUI +brew "superfly/tap/flyctl" # Fly.io CLI +brew "nmasur/repo/drips" # Retrieve AWS IPs +brew "nmasur/repo/update-ssh-config" # Update .ssh/config diff --git a/nvim.configlink/init.vim b/nvim.configlink/init.vim index d08f9c2..5e6c2e3 100644 --- a/nvim.configlink/init.vim +++ b/nvim.configlink/init.vim @@ -24,6 +24,7 @@ Plug 'jreybert/vimagit' " Git 'gui' buffer Plug 'airblade/vim-gitgutter' " Git next to line numbers Plug 'tpope/vim-fugitive' " Other git commands Plug 'machakann/vim-highlightedyank' " Highlight text when copied +Plug 'godlygeek/tabular' " Spacing and alignment Plug 'itchyny/lightline.vim' " Status bar Plug 'tpope/vim-vinegar' " Fixes netrw file explorer Plug 'lambdalisue/fern.vim' " File explorer / project drawer