From 40c07b962e61d716790732c1527dbbd311965ab8 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot Date: Tue, 4 Feb 2025 01:11:57 +0000 Subject: [PATCH] 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"