364 lines
10 KiB
VimL
364 lines
10 KiB
VimL
call plug#begin('~/.config/nvim/plugged')
|
|
Plug 'tpope/vim-surround'
|
|
Plug 'HerringtonDarkholme/yats', {'for' : 'typescript'}
|
|
Plug 'Shougo/vimproc.vim', {'do' : 'make'}
|
|
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
|
|
Plug 'mhartington/deoplete-typescript', {'for' : 'typescript'}
|
|
Plug 'Quramy/tsuquyomi', {'for' : 'typescript'}
|
|
Plug 'pangloss/vim-javascript', {'for' : 'javascript'}
|
|
Plug 'Quramy/vim-js-pretty-template', {'for' : 'javascript'}
|
|
Plug 'jason0x43/vim-js-indent', {'for' : 'javascript'}
|
|
Plug 'sgur/vim-lazygutter'
|
|
Plug 'tyrannicaltoucan/vim-quantum'
|
|
Plug 'othree/yajs.vim'
|
|
Plug 'ntpeters/vim-better-whitespace'
|
|
Plug 'jiangmiao/auto-pairs'
|
|
Plug 'scrooloose/nerdcommenter'
|
|
Plug 'neovimhaskell/haskell-vim', {'for' : 'haskell'}
|
|
Plug 'eagletmt/neco-ghc', {'for' : 'haskell'}
|
|
Plug 'Twinside/vim-hoogle', {'for' : 'haskell'}
|
|
Plug 'scrooloose/nerdtree', {'on' : 'NERDTreeToggle'}
|
|
Plug 'mileszs/ack.vim'
|
|
Plug 'easymotion/vim-easymotion'
|
|
Plug 'neomake/neomake'
|
|
Plug 'chrisbra/Colorizer'
|
|
Plug 'tpope/vim-fugitive'
|
|
Plug 'nathanaelkane/vim-indent-guides'
|
|
Plug 'rust-lang/rust.vim', {'for' : 'rust'}
|
|
Plug 'sebastianmarkow/deoplete-rust', {'for' : 'rust'}
|
|
Plug 'cespare/vim-toml', {'for' : 'toml'}
|
|
Plug 'elixir-lang/vim-elixir', {'for' : 'elixir'}
|
|
Plug 'slashmili/alchemist.vim', {'for' : 'elixir'}
|
|
Plug 'plasticboy/vim-markdown', {'for' : 'markdown'}
|
|
Plug 'reedes/vim-pencil', {'for' : 'markdown'}
|
|
Plug 'reedes/vim-lexical', {'for' : 'markdown'}
|
|
Plug 'ElmCast/elm-vim', {'for' : 'elm'}
|
|
Plug 'bitterjug/vim-tagbar-ctags-elm', {'for' : 'elm'}
|
|
Plug 'xolox/vim-misc'
|
|
Plug 'xolox/vim-easytags'
|
|
Plug 'janko-m/vim-test'
|
|
Plug 'kassio/neoterm'
|
|
Plug 'powerman/vim-plugin-AnsiEsc'
|
|
Plug 'Shougo/denite.nvim'
|
|
Plug 'fmoralesc/vim-tutor-mode', {'on' : 'Tutor'}
|
|
Plug 'Shougo/neosnippet'
|
|
Plug 'Shougo/neosnippet-snippets'
|
|
Plug 'majutsushi/tagbar', {'on' : 'Tagbar'}
|
|
Plug 'chrisbra/improvedft'
|
|
Plug 'haya14busa/incsearch.vim'
|
|
Plug 'haya14busa/incsearch-fuzzy.vim'
|
|
Plug 'haya14busa/incsearch-easymotion.vim'
|
|
Plug 'mhinz/vim-startify'
|
|
Plug 'chrisbra/Colorizer'
|
|
Plug 'itchyny/lightline.vim'
|
|
Plug 'bling/vim-bufferline'
|
|
Plug 'reedes/vim-litecorrect'
|
|
Plug 'xolox/vim-notes'
|
|
Plug 'racer-rust/vim-racer', {'for' : 'rust'}
|
|
call plug#end()
|
|
|
|
let g:ft_improved_ignorecase = 1
|
|
let test#strategy = "neoterm"
|
|
let g:elm_format_autosave = 1
|
|
"set tags=tags;/
|
|
set tags=./tags,tags;$HOME
|
|
let g:easytags_dynamic_files = 1
|
|
let g:easytags_async = 1
|
|
let g:easytags_events = ['BufWritePost']
|
|
set ttyfast
|
|
set number
|
|
set hidden
|
|
set nocompatible
|
|
set lazyredraw
|
|
set path+=**
|
|
set wildmenu
|
|
set ignorecase
|
|
set smartcase
|
|
imap fj <Esc>
|
|
filetype plugin on
|
|
let g:deoplete#enable_at_startup = 1
|
|
if !exists('g:deoplete#omni#input_patterns')
|
|
let g:deoplete#omni#input_patterns = {}
|
|
endif
|
|
au FileType elm set sw=4 sts=4 ts=4
|
|
let g:deoplete#omni_patterns = {}
|
|
let g:deoplete#omni_patterns.elm = '\.'
|
|
let g:deoplete#sources#go#sort_class = ['func', 'type', 'var', 'const']
|
|
let g:deoplete#sources#go#align_class = 1
|
|
let g:elm_detailed_complete = 1
|
|
autocmd InsertLeave,CompleteDone * if pumvisible() == 0 | pclose | endif
|
|
inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
|
|
|
|
let g:bufferline_echo = 0
|
|
|
|
autocmd FileType typescript nmap <buffer> <Leader>i : <C-u>echo tsuquyomi#hint()<CR>
|
|
autocmd FileType elm nmap <buffer> <Leader>i :ElmShowDocs<CR>
|
|
|
|
let g:quantum_black = 1
|
|
|
|
colorscheme quantum
|
|
if has("termguicolors")
|
|
set termguicolors
|
|
endif
|
|
|
|
let g:vim_markdown_folding_disabled = 1
|
|
|
|
augroup pencil
|
|
autocmd!
|
|
autocmd FileType markdown,mkd call pencil#init()
|
|
\ | call lexical#init()
|
|
\ | call litecorrect#init()
|
|
\ | call textobj#quote#init()
|
|
\ | call textobj#sentence#init()
|
|
augroup END
|
|
|
|
set clipboard+=unnamedplus
|
|
|
|
"Tabs
|
|
set expandtab
|
|
set tabstop=2
|
|
set shiftwidth=2
|
|
|
|
autocmd! BufWritePost * Neomake
|
|
function! neomake#makers#ft#typescript#EnabledMakers()
|
|
return ['tslint']
|
|
endfunction
|
|
|
|
function! neomake#makers#ft#elixir#credo()
|
|
return {
|
|
\ 'exe': 'mix',
|
|
\ 'args': ['credo', 'list', '--strict', '%:p', '--format=oneline',
|
|
\ 'readability'],
|
|
\ 'errorformat': '[%t] %. %f:%l:%c %m'
|
|
\ }
|
|
endfunction
|
|
|
|
|
|
function! neomake#makers#ft#elixir#EnabledMakers()
|
|
return ['credo']
|
|
endfunction
|
|
|
|
let g:ackprg = 'ag --nogroup --nocolor --column'
|
|
|
|
call denite#custom#var('file_rec', 'command',
|
|
\ ['ag', '--follow', '--nocolor', '--nogroup', '-g', ''])
|
|
|
|
"snippets
|
|
let g:neosnippet#enable_snipmate_compatibility = 1
|
|
let g:neosnippet#snippets_directory='~/.config/nvim/snippets'
|
|
let g:AutoPairsMapCR=0
|
|
let g:deoplete#enable_at_startup = 1
|
|
let g:deoplete#enable_smart_case = 1
|
|
imap <expr><TAB> pumvisible() ? "\<C-n>" : neosnippet#expandable_or_jumpable() ? "\<Plug>(neosnippet_expand_or_jump)" : "\<TAB>"
|
|
imap <expr><S-TAB> pumvisible() ? "\<C-p>" : "\<S-TAB>"
|
|
inoremap <expr><CR> pumvisible() ? deoplete#mappings#close_popup() : "\<CR>"
|
|
|
|
set autoindent
|
|
set copyindent
|
|
set smarttab
|
|
|
|
set smartcase
|
|
|
|
:imap fd <Esc>
|
|
"Leader keys
|
|
let mapleader="\<Space>"
|
|
"neoterm
|
|
noremap <leader>mt :T mix test<CR>
|
|
|
|
noremap <leader>p :Denite file_rec buffer<CR>
|
|
noremap <Leader>w :w<CR>
|
|
noremap <Leader>W :w !sudo tee % > /dev/null
|
|
noremap <Leader>q :q<CR>
|
|
noremap <Leader>r :%s/
|
|
noremap <Leader>f :Ack
|
|
noremap <Leader>n :NERDTreeToggle<CR>
|
|
noremap <leader>t :Tagbar<CR>
|
|
nmap <silent> <leader>ev :e $MYVIMRC<CR>
|
|
nmap <silent> <leader>sv :so $MYVIMRC<CR>
|
|
nnoremap <leader>bd :bd<CR>
|
|
nnoremap <leader>bn :bnext!<CR>
|
|
nnoremap <leader>bp :bprevious!<CR>
|
|
vnoremap < <gv
|
|
vnoremap > >gv
|
|
nnoremap <leader>v :vsplit<CR>
|
|
" " Remap split movement
|
|
nmap <leader>j <c-w>j
|
|
nmap <leader>k <c-w>k
|
|
nmap <leader>h <c-w>h
|
|
nmap <leader>l <c-w>l
|
|
|
|
"tagbar
|
|
let g:tagbar_type_elixir = {
|
|
\ 'ctagstype' : 'elixir',
|
|
\ 'kinds' : [
|
|
\ 'f:functions',
|
|
\ 'functions:functions',
|
|
\ 'c:callbacks',
|
|
\ 'd:delegates',
|
|
\ 'e:exceptions',
|
|
\ 'i:implementations',
|
|
\ 'a:macros',
|
|
\ 'o:operators',
|
|
\ 'm:modules',
|
|
\ 'p:protocols',
|
|
\ 'r:records'
|
|
\ ]
|
|
\ }
|
|
|
|
let g:tagbar_type_rust = {
|
|
\ 'ctagstype' : 'rust',
|
|
\ 'kinds' : [
|
|
\'T:types,type definitions',
|
|
\'f:functions,function definitions',
|
|
\'g:enum,enumeration names',
|
|
\'s:structure names',
|
|
\'m:modules,module names',
|
|
\'c:consts,static constants',
|
|
\'t:traits,traits',
|
|
\'i:impls,trait implementations',
|
|
\]
|
|
\}
|
|
|
|
let g:tagbar_type_haskell = {
|
|
\ 'ctagsbin' : 'hasktags',
|
|
\ 'ctagsargs' : '-x -c -o-',
|
|
\ 'kinds' : [
|
|
\ 'm:modules:0:1',
|
|
\ 'd:data: 0:1',
|
|
\ 'd_gadt: data gadt:0:1',
|
|
\ 't:type names:0:1',
|
|
\ 'nt:new types:0:1',
|
|
\ 'c:classes:0:1',
|
|
\ 'cons:constructors:1:1',
|
|
\ 'c_gadt:constructor gadt:1:1',
|
|
\ 'c_a:constructor accessors:1:1',
|
|
\ 'ft:function types:1:1',
|
|
\ 'fi:function implementations:0:1',
|
|
\ 'o:others:0:1'
|
|
\ ],
|
|
\ 'sro' : '.',
|
|
\ 'kind2scope' : {
|
|
\ 'm' : 'module',
|
|
\ 'c' : 'class',
|
|
\ 'd' : 'data',
|
|
\ 't' : 'type'
|
|
\ },
|
|
\ 'scope2kind' : {
|
|
\ 'module' : 'm',
|
|
\ 'class' : 'c',
|
|
\ 'data' : 'd',
|
|
\ 'type' : 't'
|
|
\ }
|
|
\ }
|
|
|
|
|
|
"incsearch
|
|
|
|
map / <Plug>(incsearch-forward)
|
|
map ? <Plug>(incsearch-backward)
|
|
map g/ <Plug>(incsearch-stay)
|
|
|
|
"Easymotion
|
|
function! s:config_easyfuzzymotion(...) abort
|
|
return extend(copy({
|
|
\ 'converters': [incsearch#config#fuzzyword#converter()],
|
|
\ 'modules': [incsearch#config#easymotion#module({'overwin': 1})],
|
|
\ 'keymap': {"\<CR>": '<Over>(easymotion)'},
|
|
\ 'is_expr': 0,
|
|
\ 'is_stay': 1
|
|
\ }), get(a:, 1, {}))
|
|
endfunction
|
|
|
|
noremap <silent><expr> <Space>/ incsearch#go(<SID>config_easyfuzzymotion())
|
|
|
|
"Lightline
|
|
|
|
let g:lightline = {
|
|
\ 'colorscheme': 'wombat',
|
|
\ 'active': {
|
|
\ 'left': [ [ 'mode', 'paste' ],
|
|
\ [ 'fugitive', 'filename' ], ['bufferline']]
|
|
\ },
|
|
\ 'component_function': {
|
|
\ 'fugitive': 'LightlineFugitive',
|
|
\ 'readonly': 'LightlineReadonly',
|
|
\ 'modified': 'LightlineModified',
|
|
\ 'filename': 'LightlineFilename',
|
|
\ 'bufferline': 'MyBufferline'
|
|
\ },
|
|
\ 'separator': { 'left': '', 'right': ''},
|
|
\ 'subseparator': { 'left': '|', 'right': '|' }
|
|
\ }
|
|
|
|
function! LightlineModified()
|
|
if &filetype == "help"
|
|
return ""
|
|
elseif &modified
|
|
return "+"
|
|
elseif &modifiable
|
|
return ""
|
|
else
|
|
return ""
|
|
endif
|
|
endfunction
|
|
|
|
function! LightlineReadonly()
|
|
if &filetype == "help"
|
|
return ""
|
|
elseif &readonly
|
|
return ""
|
|
else
|
|
return ""
|
|
endif
|
|
endfunction
|
|
|
|
function! LightlineFugitive()
|
|
if exists("*fugitive#head")
|
|
let branch = fugitive#head()
|
|
return branch !=# '' ? branch : ''
|
|
endif
|
|
return ''
|
|
endfunction
|
|
|
|
function! LightlineFilename()
|
|
let fname = expand('%:t')
|
|
return fname == '__Tagbar__' ? g:lightline.fname :
|
|
\ fname =~ 'NERD_tree' ? '' :
|
|
\ &ft == 'denite' ? denite#get_status_string() :
|
|
\ ('' != LightlineReadonly() ? LightlineReadonly() . ' ' : '') .
|
|
\ ('' != fname ? fname : '[No Name]') .
|
|
\ ('' != LightlineModified() ? ' ' . LightlineModified() : '')
|
|
endfunction
|
|
|
|
function! MyBufferline()
|
|
call bufferline#refresh_status()
|
|
let b = g:bufferline_status_info.before
|
|
let c = g:bufferline_status_info.current
|
|
let a = g:bufferline_status_info.after
|
|
let alen = strlen(a)
|
|
let blen = strlen(b)
|
|
let clen = strlen(c)
|
|
let w = winwidth(0) * 4 / 9
|
|
if w < alen+blen+clen
|
|
let whalf = (w - strlen(c)) / 2
|
|
let aa = alen > whalf && blen > whalf ? a[:whalf] : alen + blen < w - clen || alen < whalf ? a : a[:(w - clen - blen)]
|
|
let bb = alen > whalf && blen > whalf ? b[-(whalf):] : alen + blen < w - clen || blen < whalf ? b : b[-(w - clen - alen):]
|
|
return (strlen(bb) < strlen(b) ? '...' : '') . bb . c . aa . (strlen(aa) < strlen(a) ? '...' : '')
|
|
else
|
|
return b . c . a
|
|
endif
|
|
endfunction
|
|
|
|
let g:notes_directories = ['~/Dropbox/Write']
|
|
|
|
set list
|
|
set listchars=tab:▸\ ,eol:¬
|
|
|
|
set hidden
|
|
let g:racer_cmd = "~/.cargo/bin/racer"
|
|
let $RUST_SRC_PATH="~/.multirust/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/src"
|
|
let g:racer_experimental_completer = 1
|
|
|
|
" Disable haskell-vim omnifunc
|
|
let g:haskellmode_completion_ghc = 0
|
|
autocmd FileType haskell setlocal omnifunc=necoghc#omnifunc
|