nvim
This commit is contained in:
parent
83d6e3f7cf
commit
bda21856b1
10 changed files with 155 additions and 0 deletions
26
.config/nvim/lua/plugins2.lua
Normal file
26
.config/nvim/lua/plugins2.lua
Normal file
|
@ -0,0 +1,26 @@
|
|||
local plugins = {
|
||||
{
|
||||
'nvim-telescope/telescope.nvim',
|
||||
tag = '0.1.5',
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
},
|
||||
},
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
build = ":TSUpdate",
|
||||
config = require("config.nvim-treesitter"),
|
||||
},
|
||||
-- LSP
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
opts = require("config.lspconfig").opts,
|
||||
config = require("config.lspconfig").config,
|
||||
},
|
||||
-- Quality of life
|
||||
{
|
||||
"folke/which-key.nvim",
|
||||
},
|
||||
}
|
||||
|
||||
return plugins
|
Loading…
Add table
Add a link
Reference in a new issue