All config and installation of plugins was carried out on MacOS. Therefore, feel free to go into the configuration files to change it to suit your needs, and you can also change the hotkeys for yourself there. Restart your terminal after each setting. Good luck with your work!
I like to work with the terminal and customize it, this repository contains most of my settings and instructions for installing them.
- Zsh is one of the modern UNIX shells, used directly as an interactive shell or as a scripting interpreter.
- Vim is a powerful text editor with complete freedom of customization and automation made possible by extensions and add-ons.
- Move the
.zshrc
file to the user's directory with this command:cp ./configs/.zshrc ~/.zshrc
-
The first thing you should start with is to make sure you have VIM installed. Type the
vim
command in the terminal (to exit on press:
and typeq
and thenEnter
, becomes command:q
). -
After copy the
.vimrc
file to the directory with the user (this is how we show vim our settings).cp ./configs/.vimrc ~/.vimrc
-
Install the package manager for vim and then enter the commands to install the plugins.
vim +PlugInstall +qall
🎉 All is ready! Now, when you run the vim
command, it will open with the configuration installed. Enjoy 😄