diff --git a/base/hammerspoon/.luacheckrc b/base/hammerspoon/.luacheckrc index 6a19a97..066248b 100644 --- a/base/hammerspoon/.luacheckrc +++ b/base/hammerspoon/.luacheckrc @@ -2,14 +2,14 @@ -- These globals can be set and accessed: -- globals = { - "rawrequire", + "rawrequire", } -- -- These globals can only be accessed: -- read_globals = { - "hs", - "ls", - "spoon", + "hs", + "ls", + "spoon", } diff --git a/base/hammerspoon/generate-hammerspoon-types.py b/base/hammerspoon/generate-hammerspoon-types.py index b32f3f8..8b0aa64 100755 --- a/base/hammerspoon/generate-hammerspoon-types.py +++ b/base/hammerspoon/generate-hammerspoon-types.py @@ -370,7 +370,7 @@ def infer_type_from_param_name(param_name: str) -> str: # Function indicators if (param_name in ["fn", "func", "callback", "handler", "listener", - "predicate", "filter", "mapper", "reducer"]): + "predicate", "filter", "mapper", "reducer"]): return "function" # Number indicators diff --git a/biome.json b/biome.json index 9a5dc5c..54e4eaf 100644 --- a/biome.json +++ b/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/2.3.1/schema.json", + "$schema": "https://biomejs.dev/schemas/2.3.11/schema.json", "vcs": { "enabled": true, "clientKind": "git", diff --git a/config/fish/completions/kubectl.fish b/config/fish/completions/kubectl.fish deleted file mode 120000 index 04f9499..0000000 --- a/config/fish/completions/kubectl.fish +++ /dev/null @@ -1 +0,0 @@ -/Applications/OrbStack.app/Contents/MacOS/../Resources/completions/fish/kubectl.fish \ No newline at end of file diff --git a/config/fish/completions/orbctl.fish b/config/fish/completions/orbctl.fish deleted file mode 120000 index 19e3744..0000000 --- a/config/fish/completions/orbctl.fish +++ /dev/null @@ -1 +0,0 @@ -/Applications/OrbStack.app/Contents/MacOS/../Resources/completions/fish/orbctl.fish \ No newline at end of file diff --git a/config/nvim/lua/plugins/ui.lua b/config/nvim/lua/plugins/ui.lua index 1452b15..764f5ba 100644 --- a/config/nvim/lua/plugins/ui.lua +++ b/config/nvim/lua/plugins/ui.lua @@ -40,7 +40,8 @@ return { operators = {}, -- miscs = {}, -- Uncomment to turn off hard-coded styles }, - lsp_styles = { -- Handles the style of specific lsp hl groups (see `:h lsp-highlight`). + -- Style of specific lsp hl groups (`:h lsp-highlight`) + lsp_styles = { virtual_text = { errors = { 'italic' }, hints = { 'italic' }, @@ -72,7 +73,8 @@ return { enabled = true, indentscope_color = '', }, - -- For more plugins integrations please scroll down (https://github.com/catppuccin/nvim#integrations) + -- More integrations: + -- github.com/catppuccin/nvim#integrations }, } @@ -115,7 +117,8 @@ return { { 'dmtrKovalenko/fff.nvim', build = function() - -- this will download prebuild binary or try to use existing rustup toolchain to build from source + -- Downloads prebuild binary or uses rustup + -- toolchain to build from source -- (if you are using lazy you can use gb for rebuilding a plugin if needed) require('fff.download').download_or_build_binary() end, @@ -124,7 +127,8 @@ return { opts = { -- (optional) debug = { enabled = true, -- we expect your collaboration at least during the beta - show_scores = true, -- to help us optimize the scoring system, feel free to share your scores! + -- Share scores to help optimize scoring + show_scores = true, }, }, -- No need to lazy-load with lazy.nvim. diff --git a/local/bin/x-ssh-audit.md b/local/bin/x-ssh-audit.md index 372b1d3..15a52e9 100644 --- a/local/bin/x-ssh-audit.md +++ b/local/bin/x-ssh-audit.md @@ -37,7 +37,7 @@ The script automatically tries authentication methods in this order: 1. **Specific key** (if provided in host file) 2. **Auto-detected default keys** (`~/.ssh/id_ed25519`, `id_rsa`, `id_ecdsa`, - `id_dsa`) + `id_dsa`) 3. **SSH agent or system default authentication** This means you can mix hosts with and without specific keys, and the script will @@ -178,7 +178,7 @@ SSH_RETRIES=3 3. **Staged Rollout**: Test on non-critical hosts first 4. **Review Logs**: Check log files for detailed information 5. **Preserve Access**: Script ensures key-based auth works before disabling - passwords + passwords ## Version diff --git a/scripts/install-cargo-packages.md b/scripts/install-cargo-packages.md index 96b1cec..9c76a20 100644 --- a/scripts/install-cargo-packages.md +++ b/scripts/install-cargo-packages.md @@ -11,10 +11,10 @@ scripts/install-cargo-packages.sh ## What it does 1. If `cargo-install-update` is available, updates all existing packages first - and tracks which packages are already installed. + and tracks which packages are already installed. 2. Installs each package from the inline list using `cargo install`, - skipping any already handled by the update step. - Builds run in parallel using available CPU cores (minus two). + skipping any already handled by the update step. + Builds run in parallel using available CPU cores (minus two). 3. Runs package-specific post-install steps. 4. Cleans the cargo cache with `cargo cache --autoclean`.