This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Download latest neovim release from GitHub releases and pipe it to tar to extract it to /usr | |
| curl -sL https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz \ | |
| | sudo tar -xzf - --strip-components=1 --overwrite -C /usr | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Add these contents to ~/.config/fish/config.fish | |
| # If using Brew, config.fish is located in /usr/local/Cellar/fish/[version]/etc/fish/ | |
| # Generally recommend using the installer from https://fishshell.com instead of brew | |
| # to avoid version updates overwriting the config file | |
| # Start or re-use a gpg-agent. | |
| gpgconf --launch gpg-agent | |
| # Ensure that GPG Agent is used as the SSH agent | |
| set -e SSH_AUTH_SOCK |