Small fixes

This commit is contained in:
Imbus 2022-12-15 22:13:03 +01:00
parent 30b6a57ee4
commit 9e391ff431
2 changed files with 29 additions and 12 deletions

View file

@ -11,6 +11,18 @@ require('packer').startup(function(use)
opt = true
}
}
use {
'nvim-telescope/telescope.nvim',
tag = '0.1.0',
-- or , branch = '0.1.x',
requires = {{'nvim-lua/plenary.nvim'}}
}
use {
"folke/which-key.nvim",
config = function()
require("which-key").setup()
end
}
-- use {
-- 'VonHeikemen/lsp-zero.nvim',
-- requires = {
@ -34,15 +46,15 @@ require('packer').startup(function(use)
-- }
-- use 'neovim/lsp'
-- use 'neovim/nvim-lspconfig'
-- use {
-- 'nvim-treesitter/nvim-treesitter',
-- run = function()
-- local ts_update = require('nvim-treesitter.install').update({
-- with_sync = true
-- })
-- ts_update()
-- end
-- }
use {
'nvim-treesitter/nvim-treesitter',
run = function()
local ts_update = require('nvim-treesitter.install').update({
with_sync = true
})
ts_update()
end
}
-- use 'williamboman/mason.nvim'
-- use 'williamboman/mason-lspconfig.nvim'
-- use 'hrsh7th/nvim-cmp'