Skip to content

Commit

Permalink
feat: clean up wezterm config, and homebrew recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
kyldvs committed Jun 3, 2024
1 parent a26ae1f commit cd862bc
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 57 deletions.
34 changes: 7 additions & 27 deletions links/wezterm/.config/wezterm/wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -19,34 +19,14 @@ return {
enable_tab_bar = false,
font_size = 16.0,
font = wezterm.font('JetBrains Mono'),

-- macos_window_background_blur = 40,
macos_window_background_blur = 30,

-- window_background_image = '/Users/name/Downloads/wallpaper.jpg',
-- window_background_image_hsb = {
-- brightness = 0.01,
-- hue = 1.0,
-- saturation = 0.5,
-- },

window_background_opacity = 1.0,
window_decorations = 'RESIZE',

keys = {
{
key = 'f',
mods = 'CTRL',
action = wezterm.action.ToggleFullScreen,
},
},

mouse_bindings = {
-- Ctrl-click will open the link under the mouse cursor
{
event = { Up = { streak = 1, button = 'Left' } },
mods = 'CTRL',
action = wezterm.action.OpenLinkAtMouseCursor,
},
},
-- Ctrl-click will open the link under the mouse cursor
{
event = { Up = { streak = 1, button = 'Left' } },
mods = 'CTRL',
action = wezterm.action.OpenLinkAtMouseCursor,
},
},
}
47 changes: 17 additions & 30 deletions src/homebrew/recipes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,63 +2,50 @@
mosh
tmux

# Bash and shell-related tools.
# Shell related tools.
bash
bash-completion
shellcheck
zsh-autosuggestions
zsh-syntax-highlighting

# Enhanced command-line utilities.
# Command line tools.
bat
brew-cask-completion
cowsay
fd
fzf
jq
lazygit
ripgrep
starship
the_silver_searcher
tldr
zoxide

# System and resource monitoring.
htop
btop

# Terminal enhancements.
cowsay
starship

# Version management.
# Languages.
rust
[email protected]

# Scripting and task automation.
# Command runners.
cmake
just

# Version control and Git tools.
lazygit

# Text editors.
neovim

# File management.
# Symlink management.
stow

# Search tools.
zoxide

# Image processing.
imagemagick

# Documentation tools.
brew-cask-completion

# Similar to `man`, but with simple explanations.
tldr

# Command-line JSON processor.
jq

# PostgreSQL.
# Databases.
postgresql@16

# DevOps and cloud infrastructure.
# Infrastructure as code.
opentofu

# Zsh plugins.
zsh-autosuggestions
zsh-syntax-highlighting

0 comments on commit cd862bc

Please sign in to comment.