user216485
user216485

Reputation: 789

documentation on how to set up vim for python?

Okay so apparently VIM is a really good text editor and I want to start using it for Python. I installed lubuntu (VM) and I did the command sudo apt-get install vim-gtk, but im wondering now how to set up vim for python? Is this documented anywhere? I'm new to linux. Can someone help me out with this? What's the next step after sudo apt-get install vim-gtk?

Upvotes: 1

Views: 2225

Answers (1)

Ingo Karkat
Ingo Karkat

Reputation: 172530

First, Vim will never be an IDE; it's just a text editor (geared towards programmers) that has great capabilities, and can be greatly extended, but it will never be a consistent, fully-integrated entity.

That said, people have managed to set up Vim for productive development in a variety of languages, but, unless "real" IDEs, some effort and learning will be required on your side. Best start by perusing blog articles like these:

Upvotes: 7

Related Questions