Compare commits
7 Commits
c1adcc3ebb
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 2ebd8dc6fa | |||
| dbc7c0f6cf | |||
| 04e80e3737 | |||
| 80c877d8ed | |||
| 63181f9e6a | |||
| ef7fd3a78a | |||
| 57dbb0a250 |
@@ -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'
|
||||
|
||||
@@ -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
2
.config/yadm/config
Normal file
@@ -0,0 +1,2 @@
|
||||
[pull]
|
||||
rebase = false
|
||||
@@ -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"
|
||||
|
||||
@@ -7,3 +7,5 @@
|
||||
tool = vimdiff
|
||||
[difftool]
|
||||
prompt = false
|
||||
[pull]
|
||||
rebase = false
|
||||
|
||||
31
.gitignore
vendored
31
.gitignore
vendored
@@ -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*
|
||||
|
||||
|
||||
|
||||
20
.ssh/config
20
.ssh/config
@@ -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
|
||||
|
||||
2
.zshenv
2
.zshenv
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user