427 lines
12 KiB
VimL
427 lines
12 KiB
VimL
if empty(glob('~/.config/nvim/autoload/plug.vim'))"
|
||
silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs
|
||
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
||
endif
|
||
call plug#begin('~/.config/nvim/bundle')
|
||
|
||
" #vim-hexokinase {{{
|
||
" https://github.com/RRethy/vim-hexokinase
|
||
Plug 'RRethy/vim-hexokinase', { 'do': 'make hexokinase' }
|
||
let g:Hexokinase_highlighters = ['virtual']
|
||
let g:Hexokinase_virtualText = '██████'
|
||
nnoremap <silent> <cr>cc :HexokinaseToggle<CR>
|
||
nnoremap <silent> <cr>cr :HexokinaseRefresh<CR>
|
||
|
||
"}}}
|
||
|
||
" #ALE {{{
|
||
" https://github.com/w0rp/ale
|
||
|
||
Plug 'w0rp/ale'
|
||
" let g:ale_completion_enabled = 1
|
||
|
||
let g:ale_disable_lsp = 1
|
||
let g:ale_sign_column_always = 1
|
||
let g:ale_open_list = 0
|
||
let g:ale_fix_on_save = 1
|
||
let g:ale_fix_on_save_ignore = { 'vue': ['eslint'] }
|
||
|
||
let g:ale_linters = {'scss': [], 'javascript': [], 'json': [], 'php':['php'], 'python': [], 'html':['htmlhint'], 'vue': []}
|
||
let g:ale_fixers = {'scss': ['prettier'], 'javascript': [], 'json': ['jq'], 'python': [], 'vue': []}
|
||
|
||
let g:ale_html_htmlhint_options = '-c ~/.htmlhintrc --format=unix'
|
||
|
||
let g:ale_python_pyls_config = {
|
||
\ 'pyls': {
|
||
\ 'pycodestyle': { 'enabled': v:false },
|
||
\ 'configurationSources': ['flake8']
|
||
\ }
|
||
\ }
|
||
|
||
let g:ale_sign_error = 'Α'
|
||
let g:ale_sign_warning = 'α'
|
||
|
||
nmap aa <Plug>(ale_hover)
|
||
nmap <space>ad <Plug>(ale_detail)
|
||
nmap <space>af <Plug>(ale_fix)
|
||
nmap <space>ar <Plug>(ale_find_references)
|
||
nmap <space>ag <Plug>(ale_go_to_definition)
|
||
nmap <space>aD <Plug>(ale_documentation)
|
||
nmap <space>an <Plug>(ale_next)
|
||
nmap <space>ap <Plug>(ale_previous)
|
||
|
||
"}}}
|
||
" #coc.nvim{{{
|
||
" https://github.com/neoclide/coc.nvim
|
||
|
||
" SEE BOTTOM OF VIMRC FOR coc#add_extension statement
|
||
" for some reason fails when added some other places
|
||
|
||
Plug 'neoclide/coc.nvim', {'tag': '*', 'do': { -> coc#util#install()}}
|
||
|
||
let g:coc_snippet_next = '<tab>'
|
||
let g:coc_snippet_prev = '<s-tab>'
|
||
|
||
" inoremap <silent><expr> <c-n> coc#refresh()
|
||
nnoremap <silent> <silent> <space><space> :call CocAction('doHover')<CR>
|
||
nnoremap <silent> <silent> <space>cc :call CocAction('doHover')<CR>
|
||
nnoremap <silent> <space>cf :call CocAction('doQuickfix')<CR>
|
||
nnoremap <silent> <space>cg :call CocAction('jumpDefinition')<CR>
|
||
nnoremap <silent> <space>ci :call CocAction('jumpImplementation')<CR>
|
||
nnoremap <silent> <space>cr :call CocAction('jumpReferences')<CR>
|
||
nnoremap <silent> <space>cm :call CocAction('rename')<CR>
|
||
nnoremap <silent> <space>ca :call CocAction('codeAction')<CR>
|
||
nnoremap <silent> <space>cs :call CocAction('documentSymbols')<CR>
|
||
nnoremap <silent> <space>cS :call CocAction('workspaceSymbols')<CR>
|
||
nnoremap <silent> <space>cn :call CocAction('diagnosticNext')<CR>
|
||
nnoremap <silent> <space>cp :call CocAction('diagnosticPrevious')<CR>
|
||
" vnoremap \f <Plug>(coc-format-selected)
|
||
" nnoremap \f <Plug>(coc-format-selected)
|
||
command! -nargs=0 Format :call CocAction('format')
|
||
command! -nargs=? Fold :call CocAction('fold', <f-args>)
|
||
|
||
|
||
" }}}
|
||
" #delimitMate{{{
|
||
" https://github.com/Raimondi/delimitMate
|
||
Plug 'Raimondi/delimitMate'
|
||
let delimitMate_expand_cr = 1
|
||
let delimitMate_expand_space = 1
|
||
"}}}
|
||
" #echodoc.vim{{{
|
||
" https://github.com/Shougo/echodoc.vim
|
||
Plug 'Shougo/echodoc.vim'
|
||
"}}}
|
||
" #emmet-vim {{{
|
||
" https://github.com/mattn/emmet-vim
|
||
Plug 'mattn/emmet-vim'
|
||
let g:user_emmet_leader_key=',,'
|
||
let g:user_emmet_settings = {
|
||
\ 'indentation': ' ',
|
||
\}
|
||
|
||
"}}}
|
||
" #vim-fugitive{{{
|
||
" https://github.com/tpope/vim-fugitive/blob/master/README.markdown
|
||
Plug 'tpope/vim-fugitive'
|
||
nnoremap <silent> <space>gs :Gstatus<CR>
|
||
nnoremap <silent> <space>gd :tabedit %<CR>:Gdiff<CR>
|
||
nnoremap <silent> <space>gc :Gcommit<CR>
|
||
nnoremap <silent> <space>gl :Glog<CR>
|
||
nnoremap <silent> <space>gp :Gpush<CR>:copen<CR>
|
||
nnoremap <silent> <space>gp :Gpushjob<CR>:copen<CR>
|
||
|
||
"}}}
|
||
" #gitgutter {{{
|
||
" https://github.com/airblade/vim-gitgutter/blob/master/README.mkd
|
||
Plug 'airblade/vim-gitgutter'
|
||
|
||
nmap ]h <Plug>GitGutterNextHunk
|
||
nmap [h <Plug>GitGutterPrevHunk
|
||
omap ih <Plug>GitGutterTextObjectInnerPending
|
||
omap ah <Plug>GitGutterTextObjectOuterPending
|
||
xmap ih <Plug>GitGutterTextObjectInnerVisual
|
||
xmap ah <Plug>GitGutterTextObjectOuterVisual
|
||
|
||
"}}}
|
||
" #MatchTagAlways{{{
|
||
" https://github.com/Valloric/MatchTagAlways
|
||
Plug 'Valloric/MatchTagAlways'
|
||
let g:mta_filetypes = {
|
||
\ 'jinja' : 1,
|
||
\ 'html' : 1,
|
||
\ 'vue' : 1,
|
||
\ 'xhtml' : 1,
|
||
\ 'xml' : 1,
|
||
\}
|
||
"}}}
|
||
" #phpcomplete.vim{{{
|
||
" https://github.com/shawncplus/phpcomplete.vim
|
||
Plug 'shawncplus/phpcomplete.vim'
|
||
" https://github.com/dsawardekar/wordpress.vim
|
||
" For up to date Wordpress Files see:
|
||
" https://github.com/joseluis/wordpress.vim-generator
|
||
|
||
"}}}
|
||
" #quickscope{{{
|
||
" https://github.com/unblevable/quick-scope
|
||
Plug 'unblevable/quick-scope'
|
||
let g:qs_highlight_on_keys = ['f', 'F', 't', 'T']
|
||
"}}}
|
||
" #rainbow{{{
|
||
" https://github.com/luochen1990/rainbow/blob/master/README.md
|
||
Plug 'luochen1990/rainbow'
|
||
let g:rainbow_active = 0
|
||
nnoremap <cr>9 :RainbowToggle<cr>
|
||
nnoremap <cr>( :RainbowToggle<cr>
|
||
"}}}
|
||
" #switch {{{
|
||
"https://github.com/AndrewRadev/switch.vim
|
||
Plug 'AndrewRadev/switch.vim'
|
||
|
||
let g:switch_mapping = '<space>-'
|
||
let g:switch_custom_definitions = [
|
||
\ ['0', '1'],
|
||
\ ['ease-in', 'ease-out', 'ease-in-out', 'linear'],
|
||
\ ['auto', 'none'],
|
||
\ ['left', 'right'],
|
||
\ ['top', 'bottom'],
|
||
\ ['row', 'column'],
|
||
\ ['relative', 'absolute', 'fixed'],
|
||
\ ['private', 'public', 'protected']
|
||
\ ]
|
||
|
||
"}}}
|
||
" #tagbar {{{
|
||
" Plug 'majutsushi/tagbar'
|
||
"
|
||
" nnoremap <space>tb :TagbarOpen fj<CR>
|
||
" nnoremap <space>] :tag /[.#@]<c-r>=expand('<cword>')<cr><cr>
|
||
" let g:tagbar_autoclose = 1
|
||
" " let g:tagbar_autopreview = 1
|
||
" " let g:tagbar_previewwin_pos = ''
|
||
"
|
||
" let g:tagbar_type_css = {
|
||
" \ 'ctagstype' : 'css',
|
||
" \ 'kinds' : [
|
||
" \ 'c:classes',
|
||
" \ 'i:ids',
|
||
" \ 't:tags',
|
||
" \ 'm:medias'
|
||
" \ ]
|
||
" \}
|
||
"
|
||
" let g:tagbar_type_scss = {
|
||
" \ 'ctagstype' : 'scss',
|
||
" \ 'kinds' : [
|
||
" \ 'v:variables',
|
||
" \ 'c:classes',
|
||
" \ 'i:ids',
|
||
" \ 't:tags',
|
||
" \ 'd:medias',
|
||
" \ 'm:mixins',
|
||
" \ 'f:functions'
|
||
" \ ]
|
||
" \}
|
||
"
|
||
" let g:tagbar_type_vue = {
|
||
" \ 'ctagstype' : 'vue',
|
||
" \ 'kinds' : [
|
||
" \ 'o:objects',
|
||
" \ 'f:functions',
|
||
" \ 'a:array',
|
||
" \ 's:string',
|
||
" \ 'b:boolean',
|
||
" \ 'n:number',
|
||
" \ 'v:variable'
|
||
" \ ]
|
||
" \ }
|
||
|
||
"}}}
|
||
" #ultisnips {{{
|
||
" https://github.com/sirver/UltiSnips
|
||
Plug 'SirVer/ultisnips'
|
||
" and some snippets
|
||
" https://github.com/honza/vim-snippets
|
||
" Plug 'honza/vim-snippets'
|
||
|
||
nnoremap <space>ul :call ListUltisnips()<cr>
|
||
inoremap jkul <c-o>:call ListUltisnips()<cr>
|
||
|
||
let g:UltiSnipsSnippetsDir='~/.vim/UltiSnips'
|
||
" Trigger configuration. Do not use <tab> if you use https://github.com/Valloric/YouCompleteMe.
|
||
let g:UltiSnipsExpandTrigger='<tab>'
|
||
let g:UltiSnipsJumpForwardTrigger='<tab>'
|
||
let g:UltiSnipsJumpBackwardTrigger='<s-tab>'
|
||
let g:UltiSnipsEditSplit='horizontal'
|
||
|
||
function! ListUltisnips() abort"{{{
|
||
let l:snips = UltiSnips#SnippetsInCurrentScope(1)
|
||
let l:keylist = sort(keys(l:snips))
|
||
echo ' --------------------------------------------------'
|
||
for l:key in l:keylist
|
||
echo printf(" %-10s\t%s", l:key, l:snips[l:key])
|
||
endfor
|
||
echo '---------------------------------------------------'
|
||
endfunction
|
||
|
||
"}}}
|
||
function! CompleteSnippets(findstart, base)"{{{
|
||
if a:findstart
|
||
let l:line = getline('.')
|
||
let l:start = col('.') - 1
|
||
while l:start > 0 && l:line[l:start - 1] =~ '\a'
|
||
let l:start -= 1
|
||
endwhile
|
||
return l:start
|
||
else
|
||
let l:res = []
|
||
let l:snips = UltiSnips#SnippetsInCurrentScope(1)
|
||
let l:keylist = sort(keys(l:snips))
|
||
for l:key in l:keylist
|
||
if l:key =~ '^' . a:base
|
||
let l:item = {'word': l:key, 'menu': l:snips[l:key]}
|
||
call add(l:res, l:item)
|
||
endif
|
||
endfor
|
||
return l:res
|
||
endif
|
||
endfunction
|
||
|
||
"}}}
|
||
|
||
set completefunc=CompleteSnippets
|
||
|
||
"}}}
|
||
" #vim-dispatch{{{
|
||
" https://github.com/tpope/vim-dispatch
|
||
Plug 'tpope/vim-dispatch'
|
||
|
||
"}}}
|
||
" #vim-easy-align {{{
|
||
" https://github.com/junegunn/vim-easy-align
|
||
Plug 'junegunn/vim-easy-align'
|
||
|
||
xmap ga <Plug>(EasyAlign)
|
||
nmap ga <Plug>(EasyAlign)
|
||
|
||
"}}}
|
||
" #vim-gutentags {{{
|
||
" https://github.com/ludovicchabant/vim-gutentags
|
||
" Plug 'ludovicchabant/vim-gutentags'
|
||
"
|
||
" let g:gutentags_ctags_tagfile = '.tags'
|
||
" let g:gutentags_ctags_exclude = ['package.json', 'Session.vim', 'package-lock.json', 'TODO.txt']
|
||
" let g:gutentags_resolve_symlinks = 1
|
||
|
||
"}}}
|
||
" #vim-Jinja2-Syntax{{{
|
||
" https://github.com/studio-vx/Vim-Jinja2-Syntax
|
||
" original: https://github.com/Glench/Vim-Jinja2-Syntax
|
||
Plug 'studio-vx/Vim-Jinja2-Syntax'
|
||
|
||
"}}}
|
||
" #vim-SyntaxRange{{{
|
||
" https://github.com/inkarkat/vim-SyntaxRange
|
||
" Plug 'inkarkat/vim-SyntaxRange'
|
||
" command! HiJinja call SyntaxRange#Include('{{', '}}', 'jinja', 'jinjaBraces', 'jinjaVariable')
|
||
" command! HiJinja call SyntaxRange#IncludeEx('start=/{{-\?/hs=s+2 end=/-\?}}/he=s-1', 'jinja')
|
||
"}}}
|
||
" #wordpress.vim{{{
|
||
" doesn't support universal ctags
|
||
" #Plug 'dsawardekar/wordpress.vim'
|
||
" This fork does:
|
||
" https://github.com/DArcMattr/wordpress.vim/tree/universal-ctags
|
||
" Using studio-vx fork
|
||
" Plug 'studio-vx/wordpress.vim', { 'branch': 'universal-ctags' }
|
||
|
||
"}}}
|
||
" #vim-git{{{
|
||
" https://github.com/tpope/vim-git
|
||
Plug 'tpope/vim-git'
|
||
|
||
"}}}
|
||
|
||
" #Netrw {{{
|
||
|
||
let g:netrw_liststyle=3
|
||
let g:netrw_list_hide=netrw_gitignore#Hide()
|
||
let g:netrw_preview = 1
|
||
let g:netrw_winsize = 33
|
||
let g:netrw_altv = 1
|
||
let g:netrw_altfile = 1
|
||
let g:netrw_mousemaps = 0
|
||
|
||
"}}}
|
||
" #Obsession{{{
|
||
" fork of tpope/vim-obsession
|
||
Plug 'studio-vx/vim-obsession'
|
||
|
||
"}}}
|
||
" #undotree {{{
|
||
Plug 'mbbill/undotree'
|
||
nnoremap <space>ut :UndotreeToggle<cr>
|
||
|
||
"}}}
|
||
" #tcomment_vim{{{
|
||
" https://github.com/tomtom/tcomment_vim
|
||
Plug 'tomtom/tcomment_vim'
|
||
|
||
"}}}
|
||
" #vim-fzf {{{
|
||
" https://github.com/junegunn/fzf.vim
|
||
Plug 'junegunn/fzf'
|
||
Plug 'junegunn/fzf.vim'
|
||
|
||
nnoremap <space>fg :GFiles<CR>
|
||
nnoremap <space>ff :Files<CR>
|
||
nnoremap <space>fH :History<CR>
|
||
nnoremap <space>ft :Tags<CR>
|
||
nnoremap <space>fb :Buffers<CR>
|
||
nnoremap <space>fh :Helptags<CR>
|
||
|
||
let g:fzf_preview_window = 'right:60%'
|
||
let g:fzf_colors =
|
||
\ { 'fg': ['fg', 'Normal'],
|
||
\ 'bg': ['bg', 'Normal'],
|
||
\ 'hl': ['fg', 'Label'],
|
||
\ 'fg+': ['fg', 'CursorLine', 'CursorColumn', 'Normal'],
|
||
\ 'bg+': ['bg', 'CursorLine', 'CursorColumn'],
|
||
\ 'hl+': ['fg', 'WildMenu'],
|
||
\ 'info': ['fg', 'Comment'],
|
||
\ 'border': ['fg', 'Ignore'],
|
||
\ 'prompt': ['fg', 'Constant'],
|
||
\ 'pointer': ['fg', 'Special'],
|
||
\ 'marker': ['fg', 'Keyword'],
|
||
\ 'spinner': ['fg', 'Label'],
|
||
\ 'header': ['fg', 'Comment'] }
|
||
|
||
"}}}
|
||
" #polyglot{{{
|
||
" https://github.com/sheerun/vim-polyglot
|
||
Plug 'sheerun/vim-polyglot'
|
||
|
||
" vue options
|
||
let g:vue_disable_pre_processors=0
|
||
" set custom syntax highlighting
|
||
augroup fixhighlighting
|
||
autocmd!
|
||
autocmd BufNewFile,BufRead *.vue syntax sync fromstart
|
||
augroup END
|
||
"}}}
|
||
" #vim-markdown{{{
|
||
" https://github.com/plasticboy/vim-markdown
|
||
Plug 'plasticboy/vim-markdown'
|
||
let g:vim_markdown_toc_autofit = 1
|
||
let g:vim_markdown_fenced_languages = ['bash=sh']
|
||
"}}}
|
||
" #vim-repeat{{{
|
||
" https://github.com/tpope/vim-repeat
|
||
Plug 'tpope/vim-repeat'
|
||
|
||
"}}}
|
||
" #vim-rsi{{{
|
||
"https://github.com/tpope/vim-rsi
|
||
Plug 'tpope/vim-rsi'
|
||
|
||
"}}}
|
||
" #vim-surround{{{
|
||
Plug 'tpope/vim-surround'
|
||
|
||
"}}}
|
||
" #wakatime{{{
|
||
" https://wakatime.com/vim
|
||
Plug 'wakatime/vim-wakatime'
|
||
|
||
"}}}
|
||
|
||
call plug#end()
|
||
runtime macros/matchit.vim
|
||
" TODO - try 'coc-tsserver'
|
||
call coc#add_extension( 'coc-vetur', 'coc-python', 'coc-phpls', 'coc-json', 'coc-css', 'coc-prettier', 'coc-eslint', 'coc-vimlsp', 'coc-tsserver')
|
||
|
||
|
||
|
||
" vim: set fdm=marker ft=vim:
|