this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Set sytnax minlines to 256

+7 -6
+3 -1
nvim/after/ftplugin/vim.vim
··· 1 - setlocal iskeyword-=# 1 + packadd! vim-complimentary 2 + 3 + setlocal omnifunc=complimentary#CompleteCpty
+1 -3
nvim/autoload/completion.vim
··· 1 - let s:servers = get(g:, 'lsp_servers', []) 2 - 3 1 func! s:setup_omnifunc() abort 4 2 if len(lsp#get_whitelisted_servers()) > 0 5 3 setlocal omnifunc=lsp#complete ··· 9 7 func! completion#lsp() abort 10 8 let g:lsp_async_completion = 1 11 9 12 - for l:server in s:servers 10 + for l:server in get(g:, 'lsp_servers', []) 13 11 call lsp#register_server(l:server) 14 12 endfor 15 13
+1 -2
nvim/autoload/plugins.vim
··· 29 29 call minpac#add('dag/vim-fish') 30 30 call minpac#add('elixir-lang/vim-elixir') 31 31 call minpac#add('pangloss/vim-javascript') 32 - call minpac#add('rust-lang/rust.vim') 33 32 call minpac#add('tsandall/vim-rego') 34 33 call minpac#add('posva/vim-vue') 35 34 " }}} ··· 47 46 call minpac#add('prabirshrestha/async.vim') 48 47 call minpac#add('prabirshrestha/vim-lsp', {'type': 'opt'}) 49 48 call minpac#add('Shougo/echodoc.vim', {'type': 'opt'}) 50 - call minpac#add('fcpg/vim-complimentary') 49 + call minpac#add('fcpg/vim-complimentary', {'type': 'opt'}) 51 50 " }}} 52 51 " Code manipulation {{{ 53 52 call minpac#add('AndrewRadev/splitjoin.vim', {'type': 'opt'})
+2
nvim/init.vim
··· 25 25 " you need mental help 26 26 set wildignorecase fileignorecase 27 27 " Colors {{{ 28 + syntax sync minlines=256 29 + 28 30 set termguicolors 29 31 colorscheme blame 30 32 " }}}