/dotfiles

Primary LanguageVim Script

my Dotfiles

Neovim / Vim

# using nvim
mv nvim ~/.config/

# for vim
mv nvim ~/.vim && mv ~/.vim/init.vim ~/.vimrc

Plugins

# inside vim,
[:]PlugInstall

tmux

zsh

# Install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

# Add Typewritten theme
# source: https://typewritten.dev/#/installation theme
git clone https://github.com/reobin/typewritten.git $ZSH_CUSTOM/themes/typewritten
sed -i 's/robbyrussell/typewritten\/typewritten/' .zshrc
echo -e "\n\nTYPEWRITTEN_CURSOR='beam'" >> .zshrc

# Add zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
sed -i 's/plugins=(git)/plugins=(git zsh-autosuggestions)/' .zshrc