VIM for programming with autocompletion syntax check file browser & more

Опубликовано: 30 Май 2026
на канале: suprhst
667
10

A short video on how to extend VIM as IDE you can also try this with Neovim or other variants of vim
on VIM add the config to .vimrc
on Veovim add config to .config/nvim/init.vim
Open VIM/NeoVIM and use :PlugInstall
for youcompleteme plugin you need to download its dependencies seperately and compile the completion engine by :
cd .vim/plugged/YouCompleteMe
python3 install.py --all

to spawn a terminal inside VIM use \\t
to launch NERDtree use Ctrl +n
to toggle " use Ctrl +t
to use finder use Ctrl +f
to navigate in windows use Ctrl + w w
For icons to be visible on NERDtree use nerd fonts
For git use gitgutter
For VIM
.vimrc :
https://github.com/suprhst/vimide/blo...
For NeoVIM
init.vim :
https://github.com/suprhst/vimide/blo...