etc/vimrc

206 lines
4.9 KiB
VimL
Raw Normal View History

se nocompatible
filetype off
call plug#begin('~/.vim/plugged')
Plug 'tpope/vim-sensible'
2015-02-16 19:04:52 +01:00
Plug 'ntpeters/vim-better-whitespace'
2015-03-14 10:10:15 +01:00
Plug 'nathanaelkane/vim-indent-guides'
2015-02-16 19:04:52 +01:00
2015-01-03 12:16:22 +01:00
Plug 'chrisbra/Recover.vim'
" Plug 'Valloric/YouCompleteMe', { 'do': './install.sh --clang-completer --system-libclang' }
Plug 'Shougo/vimproc.vim' , { 'do': 'make -f make_unix.mak' }
Plug 'Shougo/unite.vim'
Plug 'tsukkee/unite-tag'
Plug 'Shougo/neomru.vim'
Plug 'ciaranm/securemodelines'
2014-08-10 09:25:50 +02:00
Plug 'chrisbra/SudoEdit.vim'
2014-08-18 16:42:57 +02:00
Plug 'nanotech/jellybeans.vim'
Plug 'majutsushi/tagbar'
Plug 'bling/vim-airline'
Plug 'scrooloose/syntastic'
Plug 'tomtom/tcomment_vim'
"Plug 'Raimondi/delimitMate'
2015-01-03 12:16:22 +01:00
" Plug 'jalcine/cmake.vim' --slow
2014-08-30 08:16:58 +02:00
Plug 'editorconfig/editorconfig-vim'
Plug 'kchmck/vim-coffee-script'
2015-02-09 14:02:50 +01:00
Plug 'pangloss/vim-javascript'
Plug 'mtscout6/vim-cjsx'
Plug 'mxw/vim-jsx'
Plug 'ledger/vim-ledger'
2014-08-31 13:39:39 +02:00
Plug 'dag/vim2hs'
Plug 'eagletmt/ghcmod-vim'
Plug 'eagletmt/neco-ghc'
2014-06-01 14:13:23 +02:00
2015-01-03 12:16:22 +01:00
" clojure
Plug 'tpope/vim-leiningen'
Plug 'tpope/vim-projectionist'
Plug 'tpope/vim-dispatch'
Plug 'tpope/vim-fireplace'
2014-06-01 14:13:23 +02:00
Plug 'marijnh/tern_for_vim'
2014-07-22 20:33:48 +02:00
Plug 'jnwhiteh/vim-golang'
Plug 'Blackrush/vim-gocode'
2014-06-01 14:13:23 +02:00
Plug 'zah/nimrod.vim'
2014-06-01 14:13:23 +02:00
Plug 'wting/rust.vim'
2014-06-01 14:13:23 +02:00
Plug 'derekwyatt/vim-scala'
2014-06-01 14:13:23 +02:00
Plug 'othree/html5.vim'
2014-06-14 19:47:10 +02:00
Plug 'dogrover/vim-pentadactyl'
Plug 'superbrothers/vim-vimperator'
2014-06-14 13:26:00 +02:00
Plug 'idris-hackers/idris-vim'
2014-07-13 13:29:14 +02:00
Plug 'tpope/vim-fugitive' " git integration
2014-07-18 08:41:58 +02:00
Plug 'kana/vim-textobj-user'
Plug 'rbonvall/vim-textobj-latex'
Plug 'kana/vim-textobj-indent'
Plug 'bps/vim-textobj-python'
2015-03-13 19:13:54 +01:00
Plug 'kana/vim-textobj-function'
Plug 'rhysd/vim-grammarous'
2014-10-24 07:32:52 +02:00
Plug 'tpope/vim-surround'
2015-01-03 12:16:22 +01:00
Plug 'Lokaltog/vim-easymotion'
2014-10-24 07:32:59 +02:00
Plug 'peterhoeg/vim-qml'
2014-11-25 14:55:00 +01:00
Plug 'ekalinin/Dockerfile.vim'
2015-01-03 12:16:22 +01:00
Plug 'digitaltoad/vim-jade'
2015-02-16 19:04:52 +01:00
Plug 'jvoorhis/coq.vim'
2015-03-13 19:13:54 +01:00
Plug 'MarcWeber/vim-addon-mw-utils'
Plug 'tomtom/tlib_vim'
Plug 'MarcWeber/vim-addon-actions'
Plug 'MarcWeber/vim-addon-completion'
Plug 'MarcWeber/vim-addon-goto-thing-at-cursor'
Plug 'MarcWeber/vim-addon-errorformats'
Plug 'MarcWeber/vim-addon-nix'
2014-06-14 13:26:00 +02:00
" vim-sleuth?
2015-03-14 10:10:15 +01:00
Plug 'urbit/hoon.vim'
2015-07-12 15:34:07 +02:00
Plug 'ahf/twelf-syntax'
2015-09-15 19:20:37 +02:00
Plug 'c-cube/vim-tptp'
call plug#end()
2014-06-14 19:47:10 +02:00
filetype plugin indent on
2013-12-29 18:32:58 +01:00
set tw=0 expandtab ts=8 sts=2 sw=2 sm ai si
2014-08-18 16:42:57 +02:00
set noml mls=5 " scan 5 lines for modelines
syn on " enable syntax highlighting
set hls " highlight search
set bg=dark " dark background
2011-02-21 16:17:43 +01:00
filetype plugin on
au BufNewFile,BufRead *.vala setf cs
au BufNewFile,BufRead *.md set ft=markdown
2014-06-14 19:11:05 +02:00
au syntax java set ts=4 sts=4 sw=4
2009-02-21 12:31:05 +01:00
au BufNewFile,BufRead *.i set ft=swig
2015-09-15 19:20:37 +02:00
au BufNewFile,BufRead *.s set ft=tptp
au BufNewFile,BufRead *.s.out set ft=tptp
au BufNewFile,BufRead *.tptp set ft=tptp
2013-03-29 15:24:24 +01:00
au BufReadCmd *.epub call zip#Browse(expand("<amatch>"))
2014-06-14 19:13:27 +02:00
au syntax haskell setl omnifunc=necoghc#omnifunc
2014-06-14 19:16:07 +02:00
let g:necoghc_enable_detailed_browse=1
2014-10-09 22:11:42 +02:00
let g:haskell_conceal = 0
2013-05-19 23:33:53 +02:00
2015-03-13 19:13:54 +01:00
au syntax tex setl iskeyword+=:
let g:syntastic_tex_checkers=['lacheck']
2015-05-21 11:09:42 +02:00
let g:syntastic_scala_checkers=[]
2015-03-14 10:12:28 +01:00
call tcomment#DefineType('nix', '# %s')
" better paragraph object for tex files FIXME
call textobj#user#plugin('latexparagraph', {
\ 'paragraph': {
\ 'pattern': ['\n\s*\n\\|\\end\\|\\begin', '\n\s*\n\\|\\begin\\|\\end'],
\ 'select-a': 'al',
\ 'select-i': 'il',
\ },
\ })
2014-09-28 09:31:52 +02:00
" disable annoying "file is read-only" warnings
au FileChangedRO * set noreadonly
2014-06-14 19:49:56 +02:00
se foldlevel=99
2013-12-29 18:32:58 +01:00
set vb " turn on the "visual bell" - which is much quieter than the "audio blink"
set nobackup
se bs=2
2015-03-13 19:13:54 +01:00
let g:ycm_filetype_blacklist = { 'sql': 1 }
2014-06-14 19:13:27 +02:00
let g:ycm_semantic_triggers = {'haskell' : ['.']}
2014-06-16 11:06:02 +02:00
let g:ycm_show_diagnostics_ui = 1
2015-03-13 19:13:54 +01:00
let g:EclimCompletionMethod = 'omnifunc'
" WIP
function LedgerGeneratePostings()
'<,'>!ledger -f - print --generated
'<,'>s/\s\s\s+/ /g
endfunction
2014-06-14 13:26:00 +02:00
let g:jellybeans_background_color = '000000'
2014-08-10 09:09:56 +02:00
if &term == "screen" || &term == "screen-bce"
set t_ts=k
set t_fs=\
endif
set title
2014-08-10 09:25:50 +02:00
" unite bindings
if executable('ag')
let g:unite_source_grep_command = 'ag'
let g:unite_source_grep_default_opts = '--noheading --nocolor'
2014-08-30 08:16:58 +02:00
let g:unite_source_rec_async_command= 'ag --nocolor --nogroup -g ""'
2014-08-10 09:25:50 +02:00
endif
call unite#filters#matcher_default#use(['matcher_fuzzy'])
call unite#filters#sorter_default#use(['sorter_selecta'])
call unite#custom#profile('default', 'context', {
\ 'ignorecase': 1,
\ 'smartcase': 1,
\ })
2014-08-10 09:25:50 +02:00
" The prefix key
nnoremap [unite] <Nop>
nmap <space> [unite]
" General purpose
nnoremap [unite]<space> :Unite -start-insert source<cr>
" Files
nnoremap [unite]f :Unite -start-insert file_rec/async<cr>
" Grepping
nnoremap [unite]g :Unite grep:.<cr>
nnoremap [unite]d :Unite grep:.:-s:\(TODO\|FIXME\)<cr>
" Content
nnoremap [unite]o :Unite -start-insert -auto-preview outline<cr>
nnoremap [unite]l :Unite -start-insert line<cr>
nnoremap [unite]t :Unite -auto-preview -start-insert tag<cr>
" Quickly switch between recent things
nnoremap [unite]F :Unite buffer tab file_mru directory_mru<cr>
nnoremap [unite]b :Unite buffer<cr>
nnoremap [unite]m :Unite file_mru<cr>
" Yank history
nnoremap [unite]y :Unite history/yank<cr>