This commit is contained in:
Barak Michener 2017-12-08 17:51:41 -08:00
parent 8bc5ba4e12
commit 921777c048
7 changed files with 56 additions and 41 deletions

6
.vimrc
View file

@ -98,6 +98,7 @@ Plug 'Shougo/deoplete.nvim'
Plug 'zchee/deoplete-go', {'build': {'unix': 'make'}}
Plug 'zchee/deoplete-jedi'
Plug 'b4winckler/vim-angry'
Plug 'clojure-vim/async-clj-omni'
Plug 'tristen/vim-sparkup'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
@ -133,6 +134,7 @@ Plug 'sheerun/vim-polyglot'
"Plug 'rust-lang/rust.vim'
"Plug 'hashivim/vim-terraform'
"Plug 'HerringtonDarkholme/yats.vim'
Plug 'tpope/vim-fireplace'
call plug#end()
@ -440,6 +442,10 @@ au FileType go nmap <leader>c :GoCoverlayT<CR>
au FileType coq nmap <leader>a :CoqToCursor<CR>
au FileType coq imap <leader>a <C-O>:CoqToCursor<CR>
au FileType clojure let g:deoplete#keyword_patterns = {}
au FileType clojure let g:deoplete#keyword_patterns.clojure = '[\w!$%&*+/:<=>?@\^_~\-\.#]*'
" Make the Quickfix window respond well to commands (for instance, q to close,
" Enter to select, etc). In tandem with the above.
augroup QFixToggle