Skip to content

Latest commit

 

History

History
63 lines (50 loc) · 1.24 KB

README.md

File metadata and controls

63 lines (50 loc) · 1.24 KB

These are my dotfiles. Should work with Ubuntu 20.x - Ubuntu 23.10/latest macOS, using zsh.

Prerequisites

  • Required:
    • ZSH shell
    • NeoVim
  • Optional (recommended)
    • Oh-my-zsh
    • tmux

Prerequisites installation

Ubuntu Installation
sudo apt update

# Required dependencies
sudo apt install -y zsh neovim
# Set default shell
chsh -s /bin/zsh 

# Optional dependencies
sudo apt install -y tmux
curl -sSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
macOS Installation
brew update

# Required dependencies
brew install zsh neovim
# Set default shell
chsh -s /bin/zsh 

# Optional dependencies
brew install tmux
curl -sSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh

Installation

  • Clone repo into home folder
git clone https://github.com/MatrixSenpai/dotfiles --recurse-submodules
  • Copy, or symlink, the following files:
    • .zshrc
    • .tmux.conf
    • nvim-config
ln -s ~/dotfiles/.zshrc ~/.zshrc
ln -s ~/dotfiles/.tmux.conf ~/.tmux.conf
ln -s ~/dotfiles/nvim-config ~/.config/nvim
  • Run :Lazy install inside vim to install all plugins