Skip to content

Latest commit

 

History

History
35 lines (25 loc) · 659 Bytes

README.md

File metadata and controls

35 lines (25 loc) · 659 Bytes

dotfiles

Tools

  1. tmux
  2. neovim
  3. wezterm
  4. lazygit
  5. brew
  6. ohmyzsh

Others

Fonts

Setup powerlevel10k plugin

brew install powerlevel10k
echo "source $(brew --prefix)/share/powerlevel10k/powerlevel10k.zsh-theme" >> ~/.zshrc
source ~/.zshrc
nvim ~/.p10k.zsh - to edit the file

Setup zsh-autosuggestions plugin

This plugin provides some really nice auto completion functionality as you type out commands.

 Install it like so:

brew install zsh-autosuggestions
echo "source $(brew --prefix)/share/zsh-autosuggestions/zsh-autosuggestions.zsh" >> ~/.zshrc
source ~/.zshrc