/My-Python_IDE

Details of my python setup, where i'm using lightweight editor vim with plugins.

Primary LanguageVim Script

Setup vim editor as a python ide on a linux system

Requirement :

Install Python3 and vim editor

For Ubuntu :

	sudo apt install python3 python3-pip vim

Run The code :

  1. Clone the repository
    git clone https://github.com/sumony2j/My-Python_IDE.git
  1. Clone VundleVim
    git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
  1. Go to directory
    cd My-Python_IDE
  1. Copy the content of vimrc file to ~/.vimrc
    cp ./vimrc ~/.vimrc
  1. Run
    vim +PluginInstall +qall

View

sample1

sample2

sample3

Note :

To add more plugins follow the steps :

  1. Add the new plugin before call vundle#end() with the following syntax in ~/.vimrc file -
    Plugin '<name of plugin>'
  1. save and exit the ~/.vimrc file

  2. In terminal run the following command :

    vim +PluginInstall +qall