diff --git a/aerospace/aerospace.toml b/aerospace/aerospace.toml index 4223b0e..0040313 100644 --- a/aerospace/aerospace.toml +++ b/aerospace/aerospace.toml @@ -40,7 +40,8 @@ outer.right = 0 # # Commands: https://nikitabobko.github.io/AeroSpace/commands [mode.main.binding] -alt-tab = 'workspace-back-and-forth' +alt-tab = 'workspace-back-and-forth' +alt-backtick = 'workspace-back-and-forth' alt-j = 'focus --boundaries all-monitors-outer-frame down' alt-k = 'focus --boundaries all-monitors-outer-frame up' diff --git a/bin/pbclear b/bin/pbclear index 3134049..3333534 100755 --- a/bin/pbclear +++ b/bin/pbclear @@ -1,9 +1,5 @@ -#!/usr/bin/env bash +#!/bin/sh -set -euo pipefail - -CURDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" - -"${CURDIR}/cbclear" +cbclear osascript -e 'display notification "Clipboard cleared" with title "pbclear"' diff --git a/ghostty/darwin.ghostty b/ghostty/darwin.ghostty index 849d8cd..b4cd4e3 100644 --- a/ghostty/darwin.ghostty +++ b/ghostty/darwin.ghostty @@ -1,6 +1,5 @@ -font-size = 14 +font-size = 12 quit-after-last-window-closed = true working-directory = home -window-save-state = never diff --git a/helix/config.toml b/helix/config.toml index 80ad4ae..3c5aca4 100644 --- a/helix/config.toml +++ b/helix/config.toml @@ -70,20 +70,7 @@ tabpad = "‒" [keys.normal] "C-l" = [":config-reload", ":redraw"] -[keys.normal.space.g] -"b" = ":sh git blame -L '%{selection_line_start},%{selection_line_end}' '%{buffer_name}'" -"f" = "changed_file_picker" -"h" = ":noop %sh{gh browse '%{buffer_name}:%{cursor_line}' --commit=%sh{git rev-parse HEAD}}" - -[keys.normal.space.q] -"q" = ":reflow" - [keys.normal.space.t] +"q" = ":reflow" "w" = ":toggle whitespace.render all none" "W" = ":toggle soft-wrap.enable" - -[keys.normal.space.y] -"y" = "yank_to_clipboard" -"p" = ":noop %sh{printf '%%s' '%{buffer_name}' | cbcopy}" -"d" = ":noop %sh{printf '%%s' $(dirname '%{buffer_name}') | cbcopy}" -"b" = ":noop %sh{printf '%%s' $(basename '%{buffer_name}') | cbcopy}"