current nvim-config
This commit is contained in:
47
lua/plugins.lua
Normal file
47
lua/plugins.lua
Normal file
@@ -0,0 +1,47 @@
|
||||
return{
|
||||
{
|
||||
"kylechui/nvim-surround",
|
||||
version = "^3.0.0",
|
||||
event = "VeryLazy",
|
||||
config= function()
|
||||
require("nvim-surround").setup({})
|
||||
end
|
||||
},
|
||||
{
|
||||
"mfussenegger/nvim-dap",
|
||||
branch = 'master'
|
||||
},
|
||||
{
|
||||
'windwp/nvim-autopairs',
|
||||
event = "InsertEnter",
|
||||
config = true
|
||||
-- use opts = {} for passing setup options
|
||||
-- this is equivalent to setup({}) function
|
||||
},
|
||||
{
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
branch="v3.x",
|
||||
dependencies={
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
"MunifTanjim/nui.nvim",
|
||||
"3rd/image.nvim"
|
||||
}
|
||||
},
|
||||
|
||||
--{
|
||||
-- 'neovim/nvim-lspconfig'
|
||||
-- },
|
||||
{
|
||||
'hrsh7th/nvim-cmp'
|
||||
},
|
||||
{
|
||||
'L3MON4D3/LuaSnip',
|
||||
},
|
||||
{
|
||||
'saadparwaiz1/cmp_luasnip'
|
||||
},
|
||||
{
|
||||
'rafamadriz/friendly-snippets'
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user