repos / dotfiles

my dotfiles

commit
1ae0d53
parent
5534d93
author
Eric Bower
date
2025-08-02 13:46:24 -0400 EDT
chore: cleanup
2 files changed,  +2, -8
M dot_config/fish/config.fish
+1, -0
1@@ -34,6 +34,7 @@ abbr -a tre "eza --tree --color=always --git-ignore -L 2"
2 abbr -a pp PA_DIR=/home/erock/dev/pico/pico-pass pa
3 abbr -a logs "ssh pipe sub /pico/log-drain -k | jq -r"
4 abbr -a ash "autossh -M 0"
5+abbr -a pdb "ssh -L 5432:localhost:5432 pico.ash.0"
6 
7 if type -q zoxide
8   zoxide init fish | source
M dot_config/nvim/init.lua
+1, -8
 1@@ -5,7 +5,7 @@
 2   design goals:
 3     - single file
 4     - use native nvim features (>= v0.12)
 5-    - keep default keybindings unless painful otherwise
 6+    - use default keybindings unless painful otherwise
 7     - plugins must be integral to workflow
 8 ]]
 9 
10@@ -214,13 +214,6 @@ end)
11 map({ "x", "o" }, "as", function()
12 	txt.select_textobject("@local.scope", "locals")
13 end)
14-local swp = require("nvim-treesitter-textobjects.swap")
15-map("n", "<leader>a", function()
16-    swp.swap_next "@function.outer"
17-end)
18-map("n", "<leader>A", function()
19-    swp.swap_previous "@function.outer"
20-end)
21 require("treesitter-context").setup({
22 	max_lines = 3,
23 	multiline_threshold = 1,