From 23b259bb514b744488b2b2b17a6bb9c7dca2efba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Feb 2025 01:11:40 +0000 Subject: [PATCH 1/2] [Submodule Update]: Bump submodules/dotfiles from `fc398ca` to `0dcbc74` Bumps [submodules/dotfiles](https://github.com/StrangeRanger/dotfiles) from `fc398ca` to `0dcbc74`. - [Commits](https://github.com/StrangeRanger/dotfiles/compare/fc398ca775c90bea6c17c0b29d2d0ff78114aa71...0dcbc7483cddac57ccd0cb41722e82f33511991d) --- updated-dependencies: - dependency-name: submodules/dotfiles dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- submodules/dotfiles | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submodules/dotfiles b/submodules/dotfiles index fc398ca..0dcbc74 160000 --- a/submodules/dotfiles +++ b/submodules/dotfiles @@ -1 +1 @@ -Subproject commit fc398ca775c90bea6c17c0b29d2d0ff78114aa71 +Subproject commit 0dcbc7483cddac57ccd0cb41722e82f33511991d From 40c07b962e61d716790732c1527dbbd311965ab8 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot Date: Tue, 4 Feb 2025 01:11:57 +0000 Subject: [PATCH 2/2] Update files based on submodule changes --- CHANGELOG.md | 6 ++++++ includes/zshrc-files/zshrc-linux.zsh | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d17e0d7..9b533c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,12 @@ Entries under the **Removed** section indicate items removed from the entire doc ## Unreleased +## 2025-02-04 + +### Changed + +- changed(PATH): modify path to 'nvim' when in '/opt/' + ## 2025-01-27 ### Added diff --git a/includes/zshrc-files/zshrc-linux.zsh b/includes/zshrc-files/zshrc-linux.zsh index e249d47..7099398 100644 --- a/includes/zshrc-files/zshrc-linux.zsh +++ b/includes/zshrc-files/zshrc-linux.zsh @@ -145,9 +145,9 @@ git open - Opens the GitHub page for a repo/branch in your browser. ## Path purpose: ## $HOME/.local/bin: User installed binaries. ## $HOME/.dotnet/tools: .NET Core tools. -## /opt/nvim-linux64/bin: Neovim binary. +## /opt/nvim/bin: Neovim binary. export PATH="$HOME/.local/bin:$PATH:$HOME/.dotnet/tools" -[[ -d /opt/nvim-linux64/bin ]] && export PATH="/opt/nvim-linux64/bin:$PATH" +[[ -d /opt/nvim/bin ]] && export PATH="/opt/nvim/bin:$PATH" # Modifies the colors of files and directories in the terminal. export LS_COLORS="di=34:ln=36:so=35:pi=1;33:ex=32:bd=34;46:cd=1;33;40:su=30;41:sg=30;46:tw=30;42:ow=30;1;43"