I am new to vim and I want to use vim as an IDE. I have installed python-mode for making it into a python IDE. I want to split vim windows into three screens with their own functions.
- Top left side window: regular vim editor
- Top right side window: python shell interpreter
- Bottom window: bash screen displaying output for commands run in top left side window
Would it be possible achieving such arrangement? If so, how may I do it?
This is how my current .vimrc file
set runtimepath+=~/.vim_runtime
source ~/.vim_runtime/vimrcs/basic.vim
source ~/.vim_runtime/vimrcs/filetypes.vim
source ~/.vim_runtime/vimrcs/plugins_config.vim
source ~/.vim_runtime/vimrcs/extended.vim
try
source ~/.vim_runtime/my_configs.vim
catch
endtry
noremap <F5> <ESC>:w<CR>:silent execute "!python %"<CR><CR>
au VimEnter * vsplit


