added custom config
This commit is contained in:
parent
4a37a0a9b1
commit
835fbf9f58
5 changed files with 126 additions and 0 deletions
22
lua/custom/plugins/dap.lua
Normal file
22
lua/custom/plugins/dap.lua
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
return {
|
||||
{
|
||||
"mfussenegger/nvim-dap",
|
||||
},
|
||||
|
||||
{
|
||||
"rcarriga/nvim-dap-ui",
|
||||
requires = {'mfussenegger/nvim-dap'},
|
||||
config = function ()
|
||||
require('dapui').setup({})
|
||||
end
|
||||
},
|
||||
{
|
||||
"theHamsta/nvim-dap-virtual-text",
|
||||
},
|
||||
{
|
||||
"nvim-telescope/telescope-dap.nvim",
|
||||
},
|
||||
{
|
||||
"mfussenegger/nvim-dap-python",
|
||||
}
|
||||
}
|
||||
15
lua/custom/plugins/filetree.lua
Normal file
15
lua/custom/plugins/filetree.lua
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
-- Unless you are still migrating, remove the deprecated commands from v1.x
|
||||
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
|
||||
|
||||
return {
|
||||
"nvim-neo-tree/neo-tree.nvim",
|
||||
version = "*",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim",
|
||||
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
||||
"MunifTanjim/nui.nvim",
|
||||
},
|
||||
config = function ()
|
||||
require('neo-tree').setup {}
|
||||
end,
|
||||
}
|
||||
8
lua/custom/plugins/filetype.lua
Normal file
8
lua/custom/plugins/filetype.lua
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
-- File: lua/custom/plugins/autopairs.lua
|
||||
|
||||
return {
|
||||
"nathom/filetype.nvim",
|
||||
config = function()
|
||||
require("filetype").setup {}
|
||||
end,
|
||||
}
|
||||
8
lua/custom/plugins/kanagawa.lua
Normal file
8
lua/custom/plugins/kanagawa.lua
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
-- File: lua/custom/plugins/autopairs.lua
|
||||
|
||||
return {
|
||||
"rebelot/kanagawa.nvim",
|
||||
config = function()
|
||||
require("kanagawa").setup {}
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue