Skip to content

Commit

Permalink
[patch] add telepresence (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yusuke Kato authored Jan 27, 2019
1 parent 338cacf commit 3913c59
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,10 @@ RUN set -x; cd "$(mktemp -d)" \
&& tar zxvf krew.tar.gz \
&& ./krew-"$(uname | tr '[:upper:]' '[:lower:]')_amd64" install --manifest=krew.yaml --archive=krew.tar.gz \
&& ls /root/.krew \
&& ls /root/.krew/bin
&& ls /root/.krew/bin \
&& curl -Lo kubebox https://github.com/astefanutti/kubebox/releases/download/v0.4.0/kubebox-linux \
&& chmod +x kubebox \
&& mv kubebox /usr/local/bin/kubebox

FROM base AS env

Expand Down
4 changes: 2 additions & 2 deletions init.vim
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ call plug#begin(expand('$NVIM_HOME') . '/plugged')
Plug 'prabirshrestha/vim-lsp'
Plug 'prabirshrestha/asyncomplete.vim'
Plug 'prabirshrestha/asyncomplete-lsp.vim'
" Plug 'natebosch/vim-lsc'
Plug 'natebosch/vim-lsc'
" ---- Vim Setting
Plug 'Shougo/neco-vim', {'for': 'vim'}
Plug 'Shougo/neco-syntax', {'for': 'vim'}
Expand Down Expand Up @@ -323,7 +323,7 @@ let g:asyncomplete_auto_popup = 1
if executable('bingo')
AutocmdFT go call lsp#register_server({
\ 'name': 'go-lang',
\ 'cmd': {server_info->['bingo', '-mode', 'stdio']},
\ 'cmd': {server_info->['bingo', '--golist-duration', '0', '-mode', 'stdio']},
\ 'whitelist': ['go'],
\ })
endif
Expand Down

0 comments on commit 3913c59

Please sign in to comment.