Big updates to vimrc

This commit is contained in:
jon
2019-01-01 14:01:16 -06:00
parent 364b2fb478
commit 4e0dcf4e22

View File

@@ -68,9 +68,6 @@ nnoremap <C-p> :Files<CR>
inoremap jj <Esc> inoremap jj <Esc>
inoremap jk <Esc> inoremap jk <Esc>
inoremap kj <Esc> inoremap kj <Esc>
" use jk to escape insert mode - using easyescape plugin
let g:easyescape_chars = { "j": 1, "k": 1 }
let g:easyescape_timeout = 100
" blank lines " blank lines
nnoremap <Enter> o<ESC> nnoremap <Enter> o<ESC>
@@ -86,32 +83,30 @@ nnoremap <space> za
map <C-n> :NERDTreeToggle<CR> map <C-n> :NERDTreeToggle<CR>
"lightline colorscheme "lightline colorscheme
let g:lightline = {'colorscheme': 'wombat',} let g:lightline = {'colorscheme': 'powerline',}
"vim-jedi auto-select first, saves a keystroke "vim-jedi auto-select first, saves a keystroke
let g:jedi#popup_select_first = 0 let g:jedi#popup_select_first = 0
" set the runtime path to include Vundle and initialize call plug#begin('~/.vim/plugged') " vim-plug
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin() Plug 'VundleVim/Vundle.vim'
" " let Vundle manage Vundle, required Plug 'tpope/vim-fugitive'
Plugin 'VundleVim/Vundle.vim' Plug 'scrooloose/nerdtree'
Plugin 'tpope/vim-fugitive' Plug 'tmhedberg/SimpylFold'
Plugin 'scrooloose/nerdtree' Plug 'vim-scripts/indentpython.vim'
Plugin 'tmhedberg/SimpylFold' Plug 'scrooloose/syntastic'
Plugin 'vim-scripts/indentpython.vim' Plug 'nvie/vim-flake8' " PEP 8 checking plugin
Plugin 'scrooloose/syntastic' Plug 'itchyny/lightline.vim'
Plugin 'nvie/vim-flake8' " PEP 8 checking plugin "Plug 'klen/python-mode'
Plugin 'itchyny/lightline.vim' Plug 'davidhalter/jedi-vim'
Plugin 'klen/python-mode' Plug 'tpope/vim-surround'
Plugin 'davidhalter/jedi-vim' Plug 'ap/vim-buftabline'
Plugin 'tpope/vim-surround' Plug 'wellle/targets.vim'
Plugin 'ap/vim-buftabline' Plug 'junegunn/goyo.vim'
Plugin 'wellle/targets.vim' Plug 'junegunn/fzf.vim'
Plugin 'junegunn/goyo.vim' Plug 'mcchrish/nnn.vim'
Plugin 'zhou13/vim-easyescape'
Plugin 'junegunn/fzf.vim' call plug#end() " end vim-plug
Plugin 'mcchrish/nnn.vim'
call vundle#end() " required
filetype plugin indent on " required filetype plugin indent on " required