A list of dotfiles and configs I use with a simple setup for my terminal.
I use an Ubuntu base system.
My plugins for vim are vim-airline
and vim-monokai
and for zsh
, git
, zsh-autosuggestions
, z
and sudo
.
Follow zsh-autosuggestions
to install it.
I also alias nvim
with vim
among some tmux
shortcuts.
Install tmux
.
apt install tmux
Copy .tmux.config
file and restart terminal.
Install zsh
along side oh-my-zsh
sudo apt install zsh
Make it your default shell (How to make ZSH the default shell?)
sudo chsh -s $(which zsh)
Log out and log back in and install oh-my-zsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
Copy .zshrc
file and restart terminal
Install Neovim
sudo apt install neovim
You may need to install Git for the next step Install the vim-plug Plugin Manager
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
Copy init.vim
file into new directory ~/.config/nvim
Install the plugins
vim +PlugInstall
or enter vim
and execute
:PlugInstall
Restart vim