Skip to content

Commit ab8c526

Browse files
committed
chore: update config
1 parent 5a9893a commit ab8c526

14 files changed

+92
-28
lines changed

Makefile

-5
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ dump-brew:
6868

6969
install: install-bash \
7070
install-bin \
71-
install-espanso \
7271
install-git \
7372
install-mise \
7473
install-npm \
@@ -87,10 +86,6 @@ install-bin:
8786
mkdir -p $(HOME)/.local/bin
8887
cp -p -- $(BINS) $(HOME)/.local/bin/
8988

90-
install-espanso:
91-
mkdir -p "$(HOME)/Library/Application Support/espanso"
92-
cp -pR -- espanso/* "$(HOME)/Library/Application Support/espanso/"
93-
9489
install-git: git/config
9590
mkdir -p -- $(XDG_CONFIG_HOME)/git
9691
cp -p -- git/config $(XDG_CONFIG_HOME)/git/config

git/config.m4

+5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@
1515
di = diff
1616
dc = diff --cached
1717

18+
# Difftastic aliases, so `git dlog` is `git log` with difftastic and so on.
19+
dlog = -c diff.external=difft log --ext-diff
20+
dshow = -c diff.external=difft show --ext-diff
21+
ddiff = -c diff.external=difft diff
22+
1823
# Log
1924
changelog = log --reverse origin..HEAD --format='* %s%n%w(,4,4)%+b'
2025
glg = log --oneline --decorate --all --graph --abbrev-commit

homebrew/work.Brewfile

+73-14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ tap "espanso/espanso"
33
tap "homebrew/bundle"
44
tap "homebrew/cask-fonts"
55
tap "reainternal/stable", "[email protected]:cowbell/homebrew-stuff"
6+
# Macro processing language
7+
brew "m4", link: true
8+
# Automatic configure script builder
9+
brew "autoconf"
10+
# Cryptography and SSL/TLS Toolkit
11+
brew "openssl@3"
12+
# YAML Parser
13+
brew "libyaml"
14+
# Library for command-line editing
15+
brew "readline"
616
# CLI tool to build, test, debug, and deploy Serverless applications using AWS SAM
717
brew "aws-sam-cli"
818
# Official Amazon AWS command-line interface
@@ -15,12 +25,24 @@ brew "bash-completion@2"
1525
brew "cheat"
1626
# Statistics utility to count lines of code
1727
brew "cloc"
28+
# Diff that understands syntax
29+
brew "difftastic"
1830
# Docker Credential Helper for Amazon ECR
1931
brew "docker-credential-helper-ecr"
32+
# Pluggable and configurable code formatting platform written in Rust
33+
brew "dprint"
34+
# Simple, fast and user-friendly alternative to find
35+
brew "fd"
36+
# Command-line fuzzy finder written in Go
37+
brew "fzf"
2038
# GitHub command-line tool
2139
brew "gh"
2240
# Distributed revision control system
2341
brew "git"
42+
# GNU multiple precision arithmetic library
43+
brew "gmp"
44+
# GNU Pretty Good Privacy (PGP) package
45+
brew "gnupg"
2446
# Smarter Dockerfile linter to validate best practices
2547
brew "hadolint"
2648
# Post-modern modal text editor
@@ -31,22 +53,26 @@ brew "htop"
3153
brew "hyperfine"
3254
# Lightweight and flexible command-line JSON processor
3355
brew "jq"
56+
# Simple terminal UI for git commands
57+
brew "lazygit"
3458
# Postgres C API library
3559
brew "libpq", link: true
3660
# Language Server for the Lua language
3761
brew "lua-language-server"
3862
# Tool for linting and static analysis of Lua code
3963
brew "luacheck"
40-
# Macro processing language
41-
brew "m4", link: true
64+
# Package manager for the Lua programming language
65+
brew "luarocks"
4266
# Mac App Store command-line interface
4367
brew "mas"
4468
# Polyglot runtime manager (asdf rust clone)
4569
brew "mise"
4670
# Ambitious Vim-fork focused on extensibility and agility
47-
brew "neovim", args: ["HEAD"]
71+
brew "neovim"
4872
# Search tool like grep and The Silver Searcher
4973
brew "ripgrep"
74+
# Safe, concurrent, practical language
75+
brew "rust"
5076
# Static analysis and lint tool, for (ba)sh scripts
5177
brew "shellcheck"
5278
# Autoformat shell script source code
@@ -61,6 +87,8 @@ brew "tldr"
6187
brew "tmux"
6288
# Display directories as trees (with optional color/HTML output)
6389
brew "tree"
90+
# Syntax-aware linter for prose
91+
brew "vale"
6492
# Vi 'workalike' with many additional features
6593
brew "vim"
6694
# Vim script Language Lint
@@ -69,8 +97,6 @@ brew "vint"
6997
brew "yt-dlp"
7098
# Login to REA AWS console by switching roles
7199
brew "reainternal/stable/aws-switch"
72-
# Authenticate to REA AWS accounts
73-
brew "reainternal/stable/rea-as"
74100
# Password manager that keeps all passwords secure behind one password
75101
cask "1password"
76102
# Professional graphic design software
@@ -79,6 +105,8 @@ cask "affinity-designer"
79105
cask "affinity-photo"
80106
# Professional desktop publishing software
81107
cask "affinity-publisher"
108+
# GPU-accelerated terminal emulator
109+
cask "alacritty"
82110
# Application launcher and productivity software
83111
cask "alfred"
84112
# Application uninstaller
@@ -93,18 +121,18 @@ cask "bbedit"
93121
cask "betterdisplay"
94122
# Record and process your ideas
95123
cask "bike"
124+
# Opensource IDE for exploring and testing api's
125+
cask "bruno"
96126
# Free and open-source web browser
97127
cask "chromium"
98128
# Screen capturing tool
99129
cask "cleanshot"
100-
# The Ultimate Homebrew Companion
130+
# GUI companion app for Homebrew
101131
cask "cork"
102132
# API documentation browser and code snippet manager
103133
cask "dash"
104134
# App to build and share containerised applications and microservices
105135
cask "docker"
106-
# Cross-platform Text Expander written in Rust
107-
cask "espanso"
108136
# Web browser
109137
cask "firefox"
110138
cask "font-fira-mono"
@@ -114,6 +142,7 @@ cask "font-ibm-plex-mono"
114142
cask "font-input"
115143
cask "font-intel-one-mono"
116144
cask "font-jetbrains-mono"
145+
cask "font-jetbrains-mono-nerd-font"
117146
cask "font-monaspace"
118147
cask "font-roboto-mono"
119148
cask "font-source-code-pro"
@@ -127,20 +156,30 @@ cask "ia-presenter"
127156
cask "iina"
128157
# Tool to optimise images to a smaller size
129158
cask "imageoptim"
159+
# System monitoring app
160+
cask "istat-menus"
161+
# Terminal emulator as alternative to Apple's Terminal app
162+
cask "iterm2"
130163
# JetBrains tools manager
131164
cask "jetbrains-toolbox"
132165
# Menu bar manager
133166
cask "jordanbaird-ice"
167+
# Spot and merge differences in text and image files or folders
168+
cask "kaleidoscope@2"
134169
# Automation software
135170
cask "keyboard-maestro"
171+
# GPU-based terminal emulator
172+
cask "kitty"
136173
# Software for Logitech devices
137-
cask "logi-options-plus"
174+
cask "logi-options+"
138175
# Optimise your webcam, headset, and Logi Dock for video meetings
139176
cask "logitune"
140-
# Web browser
177+
# Multi-platform web browser
141178
cask "microsoft-edge"
142179
# Tool to create text-based art
143180
cask "monodraw"
181+
# Utility to move and zoom windows—on one display
182+
cask "moom"
144183
# Native code editor
145184
cask "nova"
146185
# WebKit based web browser
@@ -151,33 +190,53 @@ cask "pastebot"
151190
cask "postico"
152191
# HTTP client that helps testing and describing APIs
153192
cask "rapidapi"
154-
# Move and resize windows using keyboard shortcuts or snap areas
155-
cask "rectangle"
193+
# Drag-and-drop Git history editor
194+
cask "retcon"
156195
# Sound and audio controller
157196
cask "soundsource"
197+
# Window and tab manager
198+
cask "tabtab"
199+
# Tool to automate the insertion of frequently used text and graphics
200+
cask "typinator"
158201
# Open-source code editor
159202
cask "visual-studio-code"
203+
# GPU-accelerated cross-platform terminal emulator and multiplexer
204+
cask "wezterm"
205+
# REST, GraphQL and gRPC client
206+
cask "yaak"
160207
# Application for configuring any YubiKey
161208
cask "yubico-yubikey-manager"
162209
# Multiplayer code editor
163210
cask "zed"
164211
mas "1Password for Safari", id: 1569813296
212+
mas "Actions", id: 1586435171
213+
mas "Aiko", id: 1672085276
165214
mas "Bear", id: 1091189122
166215
mas "Boop", id: 1518425043
216+
mas "Color Picker", id: 1545870783
167217
mas "com.kagimacOS.Kagi-Search", id: 1622835804
168218
mas "Dato", id: 1470584107
219+
mas "GoodLinks", id: 1474335294
220+
mas "Hand Mirror", id: 1502839586
221+
mas "HEIC Converter", id: 1294126402
169222
mas "Hush", id: 1544743900
170223
mas "iA Writer", id: 775737590
171224
mas "Microsoft To Do", id: 1274495053
172225
mas "NepTunes", id: 1006739057
226+
mas "NotePlan", id: 1505432629
227+
mas "One Thing", id: 1604176982
228+
mas "Online Check", id: 6504709660
173229
mas "Pixelmator Pro", id: 1289583905
174230
mas "Play", id: 1596506190
175-
mas "Save to Reader", id: 1640236961
231+
mas "Shareful", id: 1522267256
232+
mas "Shortery", id: 1594183810
233+
mas "Sofa", id: 1276554886
234+
mas "Speediness", id: 1596706466
176235
mas "TestFlight", id: 899247664
177236
mas "Things", id: 904280696
178237
mas "Trello", id: 1278508951
179238
mas "Velja", id: 1607635845
180-
mas "Wipr", id: 1320666476
239+
mas "Wipr", id: 1662217862
181240
mas "Xcode", id: 497799835
182241
vscode "github.copilot"
183242
vscode "github.copilot-chat"

nvim/after/ftplugin/typescript.vim

+4
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@
33
" seems the best solution that doesn't involve a new plugin.
44
"
55
nnoremap <LocalLeader>f :silent %!npx prettier --stdin-filepath %<CR>
6+
7+
" Use treesitter for folding.
8+
setlocal foldmethod=expr
9+
setlocal foldexpr=v:lua.vim.treesitter.foldexpr()

nvim/after/plugin/conform.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
local options = {
22
formatters_by_ft = {
33
lua = { "stylua" },
4-
typescript = { { "prettierd", "prettier" }, "eslint_d" },
4+
typescript = { { "prettierd", "prettier", stop_after_first = true }, "eslint_d" },
55
},
66
}
77

nvim/after/plugin/lint.lua

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
require("lint").linters_by_ft = {
2+
dockerfile = { "hadolint" },
23
lua = { "luacheck" },
34
typescript = { "eslint" },
45
}

nvim/after/plugin/lsp.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ lspconfig.lua_ls.setup({
3131
Lua = {},
3232
},
3333
})
34-
lspconfig.tsserver.setup({})
34+
lspconfig.ts_ls.setup({})
3535

3636
-- Global mappings.
3737
-- See `:help vim.diagnostic.*` for documentation on any of the below functions

nvim/pack/bundle/start/conform.nvim

Submodule conform.nvim updated 64 files

nvim/pack/bundle/start/dispatch

Submodule dispatch updated from 4c695bc to a2ff28a

nvim/pack/bundle/start/nvim-lint

Submodule nvim-lint updated 88 files

nvim/pack/bundle/start/nvim-lspconfig

Submodule nvim-lspconfig updated 388 files
Submodule nvim-treesitter updated 307 files

nvim/pack/bundle/start/projectionist

Submodule projectionist updated from 3736bd4 to 104394c

0 commit comments

Comments
 (0)