brew install node
# Fuzzy finder
brew install fzf
# Syntax highlight everywhere
brew install bat
# To install useful key bindings and fuzzy completion:
$(brew --prefix)/opt/fzf/install
# Better faster grep
brew install ripgrep
brew install cmake
brew install watchman
brew install docker
brew install docker-compose
# Terminal "gui"s
brew install jesseduffield/lazygit/lazygit
brew install jesseduffield/lazydocker/lazydocker
brew install jesseduffield/lazynpm/lazynpm
I use Fira Code Nerd Font from https://www.nerdfonts.com/
git clone --bare git@github.com:AndersNS/dotfiles.git $HOME/.dotfiles
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
git clone --depth=1 https://github.com/romkatv/powerlevel10k.git $ZSH_CUSTOM/themes/powerlevel10k
Autosuggestions:
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
Syntax highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
dotfiles config --local status.showUntrackedFiles no
dotfiles checkout
If you already have some of the files you'll get an error. Delete them or something.
- Open a nvim with
nvim
- (Should happen automatically) Install plugins
:PlugInstall
- (Should happen automatical) Install CocPlugins
- Restart nvim
In your first run you will probably get some weird errors because of missing plugins and color themes
dotfiles status
dotfiles add .vimrc
dotfiles commit -m "Add vimrc"
dotfiles add .bashrc
dotfiles commit -m "Add bashrc"
dotfiles push