updating nvim and fixing OS search to not need lsb_release

This commit is contained in:
Daniel Weber 2024-12-23 20:13:22 -05:00
parent 204a8895d1
commit 0a1b5ddccc
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit f6861907e67752bcd9056e45c31afa061431ff35 Subproject commit 250a169b7563a7a4b1a9ee2b45da07359016603d

View File

@ -46,7 +46,7 @@ function fcd() {
export PATH="$HOME/.cargo/bin:$PATH" export PATH="$HOME/.cargo/bin:$PATH"
. "$HOME/.cargo/env" . "$HOME/.cargo/env"
if [[ "$(echo $(( lsb_release -ds || cat /etc/*release || uname -om ) | head -n1))" =~ "Arch" ]]; then if [[ "$(echo $(cat /etc/*release | grep -e "^ID=" | tr -d 'ID='))" =~ "arch" ]]; then
source /usr/share/fzf/key-bindings.bash source /usr/share/fzf/key-bindings.bash
else else
source /usr/share/fzf/shell/key-bindings.bash source /usr/share/fzf/shell/key-bindings.bash