Created
July 16, 2020 16:15
-
-
Save worthless443/24cf49a728638589d63f482b78b3850c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set number | |
set nocompatible | |
filetype on | |
filetype indent on | |
filetype plugin on | |
set foldmethod=indent | |
set foldlevel=99 | |
color abstract | |
set rtp+=~/.vim/bundle/vundle.vim | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'davidhalter/jedi-vim' | |
let g:jedi#auto_initialization = 0 | |
call vundle#end() | |
let g:SimpylFold_docstring_preview=1 | |
nmap ee $ | |
nmap <C-T> :tabnew .<Enter> | |
nnoremap <C-J> <C-W><C-J> | |
nnoremap <C-K> <C-W><C-K> | |
nnoremap <C-L> <C-W><C-L> | |
nnoremap <C-H> <C-W><C-H> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment