forked from jeapostrophe/exp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.vimrc
51 lines (45 loc) · 1.54 KB
/
.vimrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
call plug#begin()
Plug 'tpope/vim-sensible' " XXX Untested
Plug 'chrisbra/unicode.vim' " XXX Need to understand better
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
Plug 'junegunn/vim-easy-align' " XXX Untested
Plug 'benekastah/neomake' " XXX Untested
Plug 'bling/vim-airline' " XXX Need to configure
Plug 'tpope/vim-fugitive' " XXX Doesn't seem to work with plug
Plug 'tpope/vim-obsession' " XXX Untested
Plug 'tpope/vim-eunuch' " XXX Need to understand
Plug 'tmux-plugins/vim-tmux' " XXX Untested
Plug 'kassio/neoterm' " XXX Untested
Plug 'Shougo/unite.vim' " XXX Untested
Plug 'Shougo/deoplete.nvim' " XXX Untested
Plug 'Shougo/neopairs.vim' " XXX Untested
Plug 'Shougo/echodoc.vim' " XXX Untested
Plug 'Shougo/context_filetype.vim' " XXX Untested
" Plug 'Shougo/vimshell.vim' " not ported to neovim yet?
Plug 'altercation/vim-colors-solarized'
call plug#end()
set esckeys
set timeoutlen=0 ttimeoutlen=0
" Simulate some Emacs keys
inoremap <M-x> :
nnoremap <M-x> :
cnoremap <C-g> <Esc>
" XXX need to have alt-arrows
set backupskip=/tmp/*,/private/tmp/*
set backspace=indent,eol,start
nnoremap <Esc>A <up>
nnoremap <Esc>B <down>
nnoremap <Esc>C <right>
nnoremap <Esc>D <left>
inoremap <Esc>A <up>
inoremap <Esc>B <down>
inoremap <Esc>C <right>
inoremap <Esc>D <left>
syntax on
" XXX Doesn't seem to work in various ways... statusline is unreadable and
" comments aren't enable (really seems like a problem in iTerm)
set background=light
colorscheme solarized
filetype plugin indent on
let g:deoplete#enable_at_startup = 1