120 lines
2.9 KiB
VimL
120 lines
2.9 KiB
VimL
if empty(glob('~/.vim/autoload/plug.vim'))
|
|
silent !curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs \
|
|
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
|
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
|
endif
|
|
|
|
" disable compatability
|
|
set nocompatible
|
|
|
|
" enable syntax highlighting
|
|
syntax enable
|
|
|
|
" show relative line numbers
|
|
set number relativenumber
|
|
|
|
" tabspaces = 4
|
|
set ts=4
|
|
|
|
" indent to the next line
|
|
set autoindent
|
|
|
|
" expand tabs into spaces
|
|
set expandtab
|
|
|
|
" when using the >> or << shift lines by 4 spaces
|
|
set shiftwidth=4
|
|
|
|
" show visual line under the cursor's current line
|
|
set cursorline
|
|
|
|
" show the matching part of the pair for [] {} and ()
|
|
set showmatch
|
|
|
|
" enable all Python syntax highlighting features
|
|
let python_highlight_all = 1
|
|
autocmd FileType python set sw=4
|
|
autocmd FileType python set ts=4
|
|
autocmd FileType python set sts=4
|
|
|
|
" Spell Checking
|
|
autocmd BufRead,BufNewFile *.md set spell spelllang=en_us
|
|
|
|
call plug#begin('.vim/plugged')
|
|
Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' }
|
|
Plug 'tpope/vim-unimpaired'
|
|
Plug 'junegunn/fzf.vim'
|
|
Plug 'tpope/vim-scriptease', {'type': 'opt'}
|
|
Plug 'jeffkreeftmeijer/vim-numbertoggle'
|
|
|
|
" Git integration
|
|
Plug 'tpope/vim-fugitive'
|
|
Plug 'airblade/vim-gitgutter'
|
|
|
|
" Code Completion
|
|
if has('nvim')
|
|
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
|
Plug 'zchee/deoplete-jedi'
|
|
else
|
|
Plug 'Shougo/deoplete.nvim'
|
|
Plug 'roxma/nvim-yarp'
|
|
Plug 'roxma/vim-hug-neovim-rpc'
|
|
Plug 'zchee/deoplete-jedi'
|
|
endif
|
|
|
|
" Terminal Utils
|
|
Plug 'mklabs/split-term.vim'
|
|
|
|
" Languages
|
|
Plug 'pangloss/vim-javascript'
|
|
Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' }
|
|
Plug 'vim-ruby/vim-ruby'
|
|
Plug 'OmniSharp/omnisharp-vim' " C#
|
|
|
|
" Frameworks
|
|
Plug 'tpope/vim-rails'
|
|
|
|
" Snippets
|
|
Plug 'SirVer/ultisnips'
|
|
|
|
" Powerline/Airline Styling
|
|
Plug 'vim-airline/vim-airline'
|
|
|
|
" Syntax
|
|
Plug 'vim-syntastic/syntastic'
|
|
|
|
" Editor Utils
|
|
Plug 'tpope/vim-surround'
|
|
" Plug 'ctrlpvim/ctrlp.vim'
|
|
Plug 'mattn/emmet-vim'
|
|
Plug 'nathanaelkane/vim-indent-guides'
|
|
|
|
" Linting
|
|
Plug 'neomake/neomake'
|
|
|
|
" Comments
|
|
Plug 'tpope/vim-commentary'
|
|
|
|
call plug#end()
|
|
|
|
let NERDTreeShowHidden=1
|
|
let g:airline#extensions#tabline#enabled = 1
|
|
let g:airline#extensions#syntastic#enabled = 1
|
|
let g:airline#extensions#syntastic#error_symbol = 'E:'
|
|
let g:airline#extensions#syntastic#stl_format_err = '%E{[%e(#%fe)]}'
|
|
let g:airline#extensions#syntastic#error_symbol = 'W:'
|
|
let g:airline#extensions#syntastic#stl_format_warn = '%W{[%w(#%fw)]}'
|
|
let g:syntastic_always_populate_loc_list = 1
|
|
let g:syntastic_auto_loc_list = 1
|
|
let g:syntastic_check_on_open = 1
|
|
let g:syntastic_check_on_wq = 0
|
|
let g:python_host_prog = '/home/eric/.pyenv/versions/nvimpy2/bin/python'
|
|
let g:python3_host_prog = '/home/eric/.pyenv/versions/nvimpy3/bin/python'
|
|
let g:deoplete#enable_at_startup = 1
|
|
|
|
let mapleder = ','
|
|
|
|
map <C-f> :NERDTreeToggle<CR>
|
|
nnoremap <C-p> :<C-u>FZF<CR>
|
|
inoremap jk <Esc>
|