caught up
This commit is contained in:
5
init.lua
5
init.lua
@@ -19,11 +19,6 @@ vim.opt.rtp:prepend(lazypath)
|
|||||||
|
|
||||||
require("lazy").setup("plugins")
|
require("lazy").setup("plugins")
|
||||||
|
|
||||||
|
|
||||||
vim.keymap.set('n', '<leader>n', ':Neotree filesystem reveal left<CR>', {})
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
--NVIM ANGULAR LSPCONFIG
|
--NVIM ANGULAR LSPCONFIG
|
||||||
--[[local project_library_path = "/usr/lib/node_modules/@angular/language-server/"
|
--[[local project_library_path = "/usr/lib/node_modules/@angular/language-server/"
|
||||||
local cmd = {
|
local cmd = {
|
||||||
|
|||||||
@@ -1,34 +1,4 @@
|
|||||||
return{
|
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'
|
-- 'neovim/nvim-lspconfig'
|
||||||
-- },
|
-- },
|
||||||
|
|||||||
7
lua/plugins/autopairs.lua
Normal file
7
lua/plugins/autopairs.lua
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
return{
|
||||||
|
'windwp/nvim-autopairs',
|
||||||
|
event = "InsertEnter",
|
||||||
|
config = true
|
||||||
|
-- use opts = {} for passing setup options
|
||||||
|
-- this is equivalent to setup({}) function
|
||||||
|
}
|
||||||
4
lua/plugins/dap.lua
Normal file
4
lua/plugins/dap.lua
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
return{
|
||||||
|
"mfussenegger/nvim-dap",
|
||||||
|
branch = 'master'
|
||||||
|
}
|
||||||
13
lua/plugins/neo-tree.lua
Normal file
13
lua/plugins/neo-tree.lua
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
return {
|
||||||
|
"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"
|
||||||
|
},
|
||||||
|
config=function()
|
||||||
|
vim.keymap.set('n', '<leader>n', ':Neotree filesystem reveal left<CR>', {})
|
||||||
|
end
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user