This repository keeps all of my Dot files, which are compatible with Gnu/Linux and Mac OSX machines. Also includes automation scripts to easily setup and cleanup the environments.
wget -q https://raw.githubusercontent.com/haridas/Dotfiles/master/linux-setup.sh -O - | bash
wget -q https://raw.githubusercontent.com/haridas/Dotfiles/master/mac-setup.sh -O - | bash
wget -q https://raw.githubusercontent.com/haridas/Dotfiles/master/uninstall.sh -O - | bash
My VIM was initially setup for developing python projects. But lately I added support for golang and scala, by default vim can be used for editing any text content, we add some plugins to get some extra features for some programming languages. So you can use it for all general type programming and editing normal files
General purpose plugins are:-
- Command-T - Fuzzy file search.
- minibufexpl - Show vim buffers on separate virtual tabs.
- nerdtree - File browser for vim.
- syntastic - Syntax checker for different file types.
- tagbar - Ctag based File analyzer.
Language Specific plugins:-
- rope - For python code inspection.
- vim-go - For better golang support
- scala-vim - For better scala support.
If any of you are interested to try out my vim setup you can run the following command to install this vim setup.
Read installation steps given on my blog
I wrote a blog post to explain more about vim environment setup and make it look like an IDE. You can read it from this link - http://haridas.in/vim-as-your-ide.html
NOTE: The blog was written two years back, so some of the plugins are not being there right now on my github repo. Some of them are removed because it doesn't help much and some other plugins are being added to work with new projects.
Thank you.