Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix build pynvim #137

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
let g:spaceline_seperate_style= 'slant-cons'
let g:spaceline_git_branch_icon= ''

- repo: hardcoreplayers/vim-buffet
- repo: bagrat/vim-buffet

- repo: glepnir/dashboard-nvim
hook_add: source $VIM_PATH/modules/module-dashboard.vim
Expand Down
2 changes: 1 addition & 1 deletion lang/go.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

# Go support
# LanguageServerProtocol used by gopls
- { repo: hardcoreplayers/go-nvim,on_ft: [ go, gomod ]}
- { repo: fatih/vim-go,on_ft: [ go, gomod ]}
2 changes: 1 addition & 1 deletion lang/sql.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

# Sql support
- { repo: hardcoreplayers/sql.vim, on_ft: sql }
- { repo: shmup/vim-sql-syntax, on_ft: sql }
4 changes: 2 additions & 2 deletions modules/module-lsp.vim
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
" Gopls config
if dein#tap('go-nvim')
if dein#tap('vim-go')
autocmd FileType go LSP 'go'
endif

Expand Down Expand Up @@ -85,6 +85,6 @@ if dein#tap('dart-vim-plugin')
call coc#add_extension('coc-flutter')
endif

if dein#tap('sql.vim')
if dein#tap('vim-sql-syntax')
call coc#add_extension('coc-sql')
endif
1 change: 1 addition & 0 deletions scripts/pynvim.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Install_Pynvim() {
warn "Delete '${__venv}' (or backup!) first, and then run ${0} again."
elif _try_pyenv || _try_python; then
# Install Python 3 requirements
"${__venv}/bin/pip" install -U wheel
"${__venv}/bin/pip" install -U pynvim PyYAML Send2Trash
ok '===> success'
else
Expand Down