0
0
Quellcode durchsuchen

feat(brew): add postgres tools

Joe vor 1 Jahr
Ursprung
Commit
70721d116d
2 geänderte Dateien mit 6 neuen und 0 gelöschten Zeilen
  1. 4 0
      .config/brew/Brewfile
  2. 2 0
      .config/zsh/.zshenv

+ 4 - 0
.config/brew/Brewfile

@@ -40,6 +40,8 @@ brew "jq"
 brew "lazydocker"
 # Simple terminal UI for git commands
 brew "lazygit"
+# Postgres C API library
+brew "libpq"
 # Clone of ls with colorful output, file type icons, and more
 brew "lsd"
 # Package manager for the Lua programming language
@@ -52,6 +54,8 @@ brew "ncurses"
 brew "neovim"
 # Small build system for use with gyp or CMake
 brew "ninja"
+# CLI for Postgres with auto-completion and syntax highlighting
+brew "pgcli"
 # PostgreSQL syntax beautifier
 brew "pgformatter"
 # Object-relational database system

+ 2 - 0
.config/zsh/.zshenv

@@ -5,7 +5,9 @@ export GOPATH="$HOME/.go"
 
 PATH="/opt/homebrew/bin:${PATH}"
 PATH="/opt/homebrew/sbin:${PATH}"
+# Additional Homebrew items that aren't linked by default
 PATH="/opt/homebrew/opt/ruby/bin:${PATH}"
+PATH="/opt/homebrew/opt/libpq/bin:${PATH}"
 
 PATH="${HOME}/.scripts:${PATH}"