nvim: fix dependencies
This commit is contained in:
parent
4ab98023e6
commit
1929597d5c
@ -3,8 +3,8 @@ require('my/functions')
|
||||
require('my/settings')
|
||||
require('my/keymaps')
|
||||
require('my/fileformats')
|
||||
require('my/lsp')
|
||||
require('my/completion')
|
||||
require('my/lsp')
|
||||
require('my/ui')
|
||||
require('my/coding')
|
||||
require('my/net')
|
||||
|
@ -3,10 +3,7 @@ require('my/plugins')
|
||||
packer.use {
|
||||
'https://github.com/hrsh7th/nvim-cmp',
|
||||
requires = {
|
||||
{
|
||||
'https://github.com/hrsh7th/cmp-nvim-lsp',
|
||||
requires = 'https://github.com/neovim/nvim-lspconfig';
|
||||
},
|
||||
'https://github.com/hrsh7th/cmp-nvim-lsp',
|
||||
'https://github.com/hrsh7th/cmp-buffer',
|
||||
'https://github.com/hrsh7th/cmp-path',
|
||||
'https://github.com/hrsh7th/cmp-cmdline',
|
||||
|
@ -4,6 +4,7 @@ require('my/completion')
|
||||
|
||||
packer.use {
|
||||
'https://github.com/neovim/nvim-lspconfig',
|
||||
requires = 'https://github.com/hrsh7th/cmp-nvim-lsp',
|
||||
config = function()
|
||||
map('n', '<f5>', vim.diagnostic.goto_prev)
|
||||
map('n', '<f6>', vim.diagnostic.goto_next)
|
||||
|
Loading…
x
Reference in New Issue
Block a user