repos / dotfiles

my dotfiles

commit
51da90b
parent
2e66209
author
Eric Bower
date
2024-12-01 08:31:48 -0500 EST
fix: use bash instead of fish
2 files changed,  +8, -1
M dot_config/nvim/lua/init.lua
+1, -0
1@@ -18,6 +18,7 @@ o.cursorline          = false   -- disable highlighting the current line
2 o.backspace           = 'indent,eol,start'
3 o.completeopt         = 'menuone,noselect'
4 o.signcolumn          = 'yes'
5+o.shell               = '/bin/bash'
6 
7 local g = vim.g
8 g.mapleader           = ','
M dot_ssh/config
+7, -1
 1@@ -44,7 +44,8 @@ Host cpu
 2 Host pr
 3   HostName pr.pico.sh
 4   User erock
 5-  IdentityFile ~/.ssh/id_ed25519
 6+  IdentityFile ~/.ssh/id_ed25519_master
 7+  IdentitiesOnly yes
 8 
 9 Host git
10     HostName 192.168.1.193
11@@ -89,6 +90,11 @@ Host ppico
12     IdentitiesOnly yes
13     IdentityFile ~/.ssh/id_ed25519_pico
14 
15+Host pipe
16+    HostName pipe.pico.sh
17+    IdentitiesOnly yes
18+    IdentityFile ~/.ssh/id_ed25519
19+
20 Host ppipe
21     HostName pipe.pico.sh
22     IdentitiesOnly yes