feat: Added code completion package back (required by LSP)
This commit is contained in:
parent
94e3ee2028
commit
e186a765ee
|
@ -34,6 +34,21 @@ require("lazy").setup({
|
|||
{ -- Formatter, Linter, etc bridge??
|
||||
'nvimtools/none-ls.nvim'
|
||||
},
|
||||
{ -- Code completion
|
||||
'hrsh7th/nvim-cmp'
|
||||
},
|
||||
{ -- Utility thing for code completion
|
||||
'hrsh7th/cmp-nvim-lsp'
|
||||
},
|
||||
{ -- Buffer source for code completion
|
||||
'hrsh7th/cmp-buffer'
|
||||
},
|
||||
{ -- Path source for code completion
|
||||
'hrsh7th/cmp-path'
|
||||
},
|
||||
{ -- Cmdline source for code completion
|
||||
'hrsh7th/cmp-cmdline'
|
||||
},
|
||||
{ -- File navigation fuzzy finder
|
||||
'nvim-telescope/telescope.nvim',
|
||||
tag = '0.1.8',
|
||||
|
@ -48,8 +63,17 @@ require("lazy").setup({
|
|||
{ -- Git utility
|
||||
'tpope/vim-fugitive'
|
||||
},
|
||||
{ -- Keybind helper
|
||||
'folke/which-key.nvim',
|
||||
keys = {
|
||||
{
|
||||
'folke/which-key.nvim'
|
||||
"<leader>?",
|
||||
function()
|
||||
require("which-key").show({ global = false })
|
||||
end,
|
||||
desc = "Buffer Local Keymaps (which-key)",
|
||||
},
|
||||
},
|
||||
},
|
||||
{ -- Color Scheme
|
||||
'folke/tokyonight.nvim'
|
||||
|
|
Loading…
Reference in New Issue