* Installation of vim
Use vundle for the package of vim: https://github.com/VundleVim/Vundle.vim
Don’t forget to add the promptline plugin: https://github.com/edkolev/promptline.vim
Add in the .vimrc this section:
Plugin Plugin ‘edkolev/promptline.vim’
* Configuration
Base dot-net configuration from: https://github.com/amacgregor/dot-files
Idea of what it is: https://coderoncode.com/tools/2017/04/16/vim-the-perfect-ide.html
For Python configuration and tools:
https://www.fullstackpython.com/vim.html
Add git status on vim:
* Issue with on Mac OS X
There are two ctags known as GNU ctags and exuberant-ctags, what the tagbar need to use is exuberant-ctags. exuberant-ctags need to be installed by yourself.
What I do to solve this problem is
brew install ctags-exuberant
and find it’s installed in /usr/local/Cellar/ctags/5.8_1
then I add a line in .vimrc:
let g:Tlist_Ctags_Cmd=’/usr/local/Cellar/ctags/5.8_1/bin/ctags’