These are global settings to be used on any computer (mac, linux, or WSL2) Any local-specific settings are to be saved in the .zshrc file
- install zsh
- install neovim
- download this repository:
git clone https://github.com/jaredmtterminus/nvimconfig ~/.config/nvim- add to .zshrc:
source ~/.config/nvim/.zshrc_source - add to .zshrc:
source ~/.config/nvim/.zshrc_kube - follow instructions in
~/.config/nvim/.zshrc_kube - run
zshand follow any instructions given.- repeat this step until all prerequisites are satisfied
- run
nvimand type:PlugInstallinto vim. - (optional) in neovim run
:healthcheckto see what may need to be installed
- after installing fd with
sudo apt install fd-find:
ln -s $(which fdfind) ~/.local/bin/fd- after installing bat with
sudo apt install bat:
mkdir -p ~/.local/bin
ln -s /usr/bin/batcat ~/.local/bin/batnote: you may need to also add ~/.local/bin to path.
To fix dpkg error: sudo -i and sudo dpkg -i --force-overwrite <deb file>
Finally: sudo apt install -f bat
- after installing fzf with
sudo apt install fzfadd to .zshrc:
export FZF_KEY_BINDINGS_FILE='/usr/share/doc/fzf/examples/key-bindings.zsh'- to update node to latest version (required for neovim):
sudo npm cache clean -f
sudo npm install -g n
sudo n stable