Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrinjamul/vim-in
◈ A vim distribution, you will love it. It is more like IDE than an editor. Alternative to VS Code.
https://github.com/mrinjamul/vim-in
ide neovim nvim vim vim-configuration vimrc
Last synced: about 1 month ago
JSON representation
◈ A vim distribution, you will love it. It is more like IDE than an editor. Alternative to VS Code.
- Host: GitHub
- URL: https://github.com/mrinjamul/vim-in
- Owner: mrinjamul
- License: mit
- Created: 2020-10-08T15:38:00.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-24T08:52:18.000Z (over 2 years ago)
- Last Synced: 2024-10-02T09:27:06.732Z (about 2 months ago)
- Topics: ide, neovim, nvim, vim, vim-configuration, vimrc
- Language: Vim script
- Homepage:
- Size: 41 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# vim-in
_A vim distribution you will love it._
This is a distribution of vim plugins for Web Development and golang development purpose.
# Installation
## Requirements
You need to install,
- `vim` (v8+ recommanded but v7.3+ version is supported)
- `git`
- `yarn`
- `curl`
- `npm` (optional)
- `go` (optional)[Note: if you don't want to use for golang then you can remove plugins used for golang]
Download or clone the repository.
```sh
git clone https://github.com/mrinjamul/vim-in.git
cd vim-in
chmod +x install.sh
./install.sh
```And All's set !
To uninstall vim-in,
```sh
chmod +x uninstall.sh
./uninstall.sh
```And it will restore your old configurations for vim
# Introduction to VIM
Here's some tips if you've never used VIM before:
## Tutorials
- [A Beginner Guide to Vim](https://mrinjamul.github.io/unixTutorials/vim/A_Beginner_Guide_to_Vim.html)
- Learn more about vim [Advanced](https://mrinjamul.github.io/unixTutorials/vim/vim_expert.html)
- An interactive tutorials for vim [OpenVimTutorial](https://www.openvim.com/)## Modes
- VIM has two (common) modes:
- insert mode- stuff you type is added to the buffer
- normal mode- keys you hit are interpreted as commands
- To enter insert mode, hit `i`
- To exit insert mode, hit ``