Skip to content

Make VIM look and act like VSCode, hence vimcode.

Notifications You must be signed in to change notification settings

ibnYusrat/vimcode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Make VIM Look & Work like VS Code for Web Development

Automatic Install:

Simply run the ./install.sh script to set everything up automatically. The script may take a little bit of time so be patient. This script will not install ripgrep automatically because it depends on which distro you are on. And you might not need it anyway.

Manual Install Instructions:

  1. Install VIM Plug with this command

curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

  1. Copy .vimrc file to your home directory (overwrite existing file you never edited it before).

  2. Go to terminal and type vim and then type :PlugInstall. Wait for the process to complete.

  3. Type :q :q (twice) to quit vim. And type vim in terminal again.

  4. Install required plugins by coc, type: :CocInstall coc-json coc-tsserver

  5. Install Ripgrep (https://github.com/BurntSushi/ripgrep)

For ubuntu, it'll go like this: sudo apt-get install ripgrep

For other operating systems, please read their README.

  1. Install the font (Cousine Regular Nerd Font Complete) from the directory where you cloned this repository.

Custom settings:

  1. Pressing CTRL + Down and CTRL + Up moves the lines of code up and down.
  2. d is mapped to "_d which means it will delete the text instead of cutting it, and won't change clipboard. To Actually cut, you can use c followed by movement keys.
  3. Also x will delete 1 charachter, instead of changing the clipboard.
  4. Ctrl + / toggles comments.

About

Make VIM look and act like VSCode, hence vimcode.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published