Compare commits

...

7 Commits

Author SHA1 Message Date
2ebd8dc6fa tweak lazygit 2025-03-14 17:21:36 -04:00
dbc7c0f6cf Fix fnm config 2025-03-10 13:08:15 -04:00
04e80e3737 Remove extra files 2025-03-07 19:27:36 -05:00
80c877d8ed Merge branch 'master' of potokar.us:easton/dotfiles 2025-03-07 19:20:10 -05:00
63181f9e6a Update sshconfig to use new vpn setup 2025-03-07 14:50:35 -05:00
ef7fd3a78a Tmux pane renaming 2025-02-04 20:17:03 -05:00
57dbb0a250 Fix nvm just install 2025-01-06 16:17:33 -05:00
8 changed files with 61 additions and 5 deletions

View File

@@ -179,7 +179,7 @@ gui:
# Default size for focused window. Window size can be changed from within Lazygit with '+' and '_' (but this won't change the default).
# One of: 'normal' (default) | 'half' | 'full'
windowSize: normal
windowSize: full
# Window border style.
# One of 'rounded' (default) | 'single' | 'double' | 'hidden'

View File

@@ -40,6 +40,12 @@ bind -r Left previous-window
bind-key -n C-S-Left swap-window -t -1\; select-window -t -1
bind-key -n C-S-Right swap-window -t +1\; select-window -t +1
# rename pane starts empty
bind-key , command-prompt "rename-window '%%'"
# restart panes
bind-key k respawn-pane -k
# ----------------------- Plugins ----------------------- #
# List of plugins

2
.config/yadm/config Normal file
View File

@@ -0,0 +1,2 @@
[pull]
rebase = false

View File

@@ -7,6 +7,7 @@ fi
# Aliases
alias c='clear'
alias ch='clear && tmux clear-history'
alias open='xdg-open'
alias lg="lazygit"
alias nv="nvim"

View File

@@ -7,3 +7,5 @@
tool = vimdiff
[difftool]
prompt = false
[pull]
rebase = false

31
.gitignore vendored
View File

@@ -34,6 +34,37 @@
/.config/arduino-ide
/.config/PrusaSlicer
/.config/syncthing
/.config/Kingsoft
/.config/VCG
/.config/VSCodium
/.config/autostart
/.config/catkin
/.config/cef_user_data
/.config/chromium
/.config/act
/.config/cura
/.config/enchant
/.config/eog
/.config/evolution
/.config/evince
/.config/gedit
/.config/glib-2.0
/.config/go
/.config/gthumb
/.config/gtk-3.0
/.config/gtk-4.0
/.config/helix
/.config/htop
/.config/ibus
/.config/menus
/.config/nautilus
/.config/odmpy
/.config/rerun
/.config/AliceVision
/.config/code-server
/.config/marimo
/.config/sqlitebrowser
/.config/systemd
.bash*

View File

@@ -1,12 +1,22 @@
Host ssh.eastonpots.com
ProxyCommand /usr/local/bin/cloudflared access ssh --hostname %h
Host dgx01
HostName dgx01
User epotokar
Host work
Host potlab_cf
ProxyCommand /usr/local/bin/cloudflared access ssh --hostname ssh.eastonpots.com
Host work_cf
ProxyCommand /usr/local/bin/cloudflared access ssh --hostname work.eastonpots.com
Host potlab
HostName 192.168.0.6
User contagon
Host work
HostName 10.8.0.2
User contagon
ProxyJump potlab
Host nrec
HostName atr-share.rec.ri.cmu.edu
User epotokar
@@ -19,6 +29,10 @@ Host bb
HostName bitbucket.org
IdentityFile ~/.ssh/bb
Host bb_aqua
HostName bitbucket.org
IdentityFile ~/.ssh/bb_aqua
Host nrec
HostName atr-share.rec.ri.cmu.edu
User epotokar

View File

@@ -13,7 +13,7 @@ export VISUAL="nvim"
[ -d "$HOME/.local/share/bob" ] && export PATH="$PATH:$HOME/.local/share/bob/nvim-bin"
# cargo
[ -d "$HOME/.cargo" ] && . "$HOME/.cargo/env"
fnm=$(which fnm)
fnm=$(command -v fnm)
[ "" != "$fnm" ] && eval "$(fnm env --use-on-cd --shell zsh)"
[ -d "$HOME/.nix-profile" ] && . $HOME/.nix-profile/etc/profile.d/nix.sh
[ -d "$HOME/.pixi" ] && export PATH="$HOME/.pixi/bin:$PATH"