57 lines
1.3 KiB
Lua
57 lines
1.3 KiB
Lua
-- You can add your own plugins here or in other files in this directory!
|
|
-- I promise not to create any merge conflicts in this directory :)
|
|
--
|
|
-- See the kickstart.nvim README for more information
|
|
return {
|
|
-- add, delete, change surroundings it's awesome
|
|
"tpope/vim-surround",
|
|
-- -- commenting with gc
|
|
"numToStr/Comment.nvim",
|
|
|
|
"justinmk/vim-sneak",
|
|
"arkav/lualine-lsp-progress",
|
|
|
|
-- tmux & split window navigation
|
|
"christoomey/vim-tmux-navigator",
|
|
|
|
|
|
"nvim-telescope/telescope-project.nvim",
|
|
|
|
-- vs-code like icons for autocompletion
|
|
"onsails/lspkind.nvim",
|
|
"catppuccin/nvim",
|
|
as = "catppuccin",
|
|
{ "startup-nvim/startup.nvim", dependencies = "nvim-telescope/telescope.nvim", "nvim-lua/plenary.nvim" },
|
|
|
|
{
|
|
"glepnir/lspsaga.nvim",
|
|
event = "BufRead",
|
|
config = function()
|
|
require("lspsaga").setup({})
|
|
end,
|
|
dependencies = {
|
|
{ "nvim-tree/nvim-web-devicons" },
|
|
--Please make sure you install markdown and markdown_inline parser
|
|
{ "nvim-treesitter/nvim-treesitter" },
|
|
},
|
|
},
|
|
|
|
-- Debugger
|
|
"mfussenegger/nvim-dap",
|
|
{
|
|
"rcarriga/nvim-dap-ui",
|
|
dependencies = "mfussenegger/nvim-dap",
|
|
},
|
|
{
|
|
"theHamsta/nvim-dap-virtual-text",
|
|
dependencies = "mfussenegger/nvim-dap",
|
|
},
|
|
"nvim-telescope/telescope-dap.nvim",
|
|
|
|
{
|
|
"akinsho/toggleterm.nvim",
|
|
version = "*",
|
|
config = true
|
|
},
|
|
}
|