Metadata-Version: 2.4
Name: vimde
Version: 2025.3
Summary: Vim+Tmux based IDE
Home-page: https://github.com/c4t3l/vimde
Author: Robby Callicotte
Author-email: rcallicotte@fedoraproject.org
License: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: bpython
Requires-Dist: click
Requires-Dist: jedi
Requires-Dist: msgpack
Requires-Dist: pynvim
Requires-Dist: powerline-status
Requires-Dist: pudb
Requires-Dist: requests
Requires-Dist: setproctitle
Dynamic: license-file

# VimDE

VimDE is a simple Development Environment wrapper for vim and tmux.  It requires at least 
vim8 and python3.8. Here is a list of included plugins that come "out-of-the-box".  

* NERDTree  

* Deoplete-Jedi (for python autocompletion)

* Salt-vim syntax highligher

* Jinja2 syntax highligter

* Vimux (vim+tmux) integrated plugin

* Pudb python debugger (python3)

* Supertab vim plugin

* Over 900 vim colorschemes

* Powerline plugins for Vim and Tmux

* Wemux server for use with pair programming

## Local Development  

```
python -m venv .vimde-dev
source .vimde-dev/bin/activate
pip install --upgrade pip
pip install -q build
make dist install
make install
```
