2023-01-28 19:06:51 +01:00
|
|
|
local icons = require('config.icons').list
|
2022-10-21 17:53:51 +02:00
|
|
|
local plugins = {
|
2023-01-28 19:06:51 +01:00
|
|
|
{ "wbthomason/packer.nvim",
|
|
|
|
config = function()
|
|
|
|
require('funcs').map("packer")
|
|
|
|
end
|
|
|
|
},
|
|
|
|
{ "nvim-lua/plenary.nvim" },
|
|
|
|
{ "lewis6991/impatient.nvim" },
|
|
|
|
{ "tpope/vim-surround",
|
|
|
|
setup = function()
|
|
|
|
require('funcs').on_file_open("vim-surround")
|
|
|
|
end
|
|
|
|
},
|
|
|
|
{ "tpope/vim-repeat",
|
|
|
|
setup = function()
|
|
|
|
require('funcs').on_file_open("vim-repeat")
|
|
|
|
end
|
|
|
|
},
|
|
|
|
{ "fladson/vim-kitty",
|
|
|
|
ft = "kitty"
|
|
|
|
},
|
|
|
|
{ "kyazdani42/nvim-web-devicons" },
|
|
|
|
{ "felipec/vim-sanegx",
|
|
|
|
setup = function()
|
|
|
|
require('funcs').on_file_open("vim-sanegx")
|
|
|
|
end
|
|
|
|
},
|
|
|
|
{ "folke/which-key.nvim",
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.whichkey')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "folke/tokyonight.nvim",
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.tokyonight')
|
|
|
|
end
|
|
|
|
},
|
|
|
|
{ "folke/todo-comments.nvim",
|
|
|
|
setup = function()
|
|
|
|
require('funcs').on_file_open("todo-comments.nvim")
|
|
|
|
end,
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.todo-comments')
|
|
|
|
end
|
|
|
|
},
|
|
|
|
{ "akinsho/bufferline.nvim",
|
|
|
|
setup = function()
|
|
|
|
require('funcs').on_file_open("bufferline.nvim")
|
|
|
|
require('funcs').map("bufferline")
|
|
|
|
end,
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.bufferline')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "nvim-lualine/lualine.nvim",
|
|
|
|
setup = function()
|
|
|
|
require('funcs').on_file_open("lualine.nvim")
|
|
|
|
end,
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.lualine')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "akinsho/toggleterm.nvim",
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.toggleterm')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "lukas-reineke/indent-blankline.nvim",
|
|
|
|
after = "nvim-treesitter",
|
|
|
|
setup = function()
|
|
|
|
require('funcs').on_file_open("indent-blankline.nvim")
|
|
|
|
require('funcs').map("blankline")
|
|
|
|
end,
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.indent-blankline')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "norcalli/nvim-colorizer.lua",
|
|
|
|
setup = function()
|
|
|
|
require('funcs').on_file_open("nvim-colorizer.lua")
|
|
|
|
end,
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.nvim-colorizer')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "RRethy/vim-illuminate",
|
|
|
|
setup = function()
|
|
|
|
require('funcs').on_file_open("vim-illuminate")
|
|
|
|
require('funcs').map("illuminate")
|
|
|
|
end,
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.illuminate')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "nvim-treesitter/nvim-treesitter",
|
|
|
|
setup = function()
|
|
|
|
require('funcs').on_file_open("nvim-treesitter")
|
|
|
|
end,
|
|
|
|
cmd = {
|
|
|
|
"TSInstall",
|
|
|
|
"TSBufEnable",
|
|
|
|
"TSBufDisable",
|
|
|
|
"TSEnable",
|
|
|
|
"TSDisable",
|
|
|
|
"TSModuleInfo"
|
|
|
|
},
|
|
|
|
run = ":TSUpdate",
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.treesitter')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "lewis6991/gitsigns.nvim",
|
|
|
|
ft = "gitcommit",
|
|
|
|
setup = function()
|
|
|
|
require('funcs').gitsigns()
|
|
|
|
end,
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.gitsigns')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "williamboman/mason.nvim",
|
|
|
|
setup = function()
|
|
|
|
require('funcs').map("mason")
|
|
|
|
end,
|
|
|
|
config = function()
|
|
|
|
require "plugins.config.mason"
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "williamboman/mason-lspconfig.nvim" },
|
|
|
|
{ "neovim/nvim-lspconfig",
|
|
|
|
after = "mason-lspconfig.nvim",
|
|
|
|
setup = function()
|
|
|
|
require('funcs').on_file_open("nvim-lspconfig")
|
|
|
|
require('funcs').map("lspconfig")
|
|
|
|
end,
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.lspconfig')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "jose-elias-alvarez/null-ls.nvim",
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.null-ls')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "rcarriga/nvim-dap-ui",
|
|
|
|
after = "nvim-dap",
|
|
|
|
setup = function()
|
|
|
|
require('funcs').on_file_open("nvim-dap-ui")
|
|
|
|
end,
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.dapui')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "mfussenegger/nvim-dap",
|
|
|
|
setup = function()
|
|
|
|
require('funcs').on_file_open("nvim-dap")
|
|
|
|
require('funcs').map("dap")
|
|
|
|
end,
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.dap')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "rafamadriz/friendly-snippets",
|
|
|
|
event = "InsertEnter",
|
|
|
|
module = { "cmp", "cmp_nvim_lsp" },
|
|
|
|
},
|
|
|
|
{ "hrsh7th/nvim-cmp",
|
|
|
|
after = "friendly-snippets",
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.cmp')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "L3MON4D3/LuaSnip",
|
|
|
|
after = "nvim-cmp",
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.luasnip')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "saadparwaiz1/cmp_luasnip", after = "LuaSnip" },
|
|
|
|
{ "hrsh7th/cmp-nvim-lua", after = "cmp_luasnip" },
|
|
|
|
{ "hrsh7th/cmp-nvim-lsp", after = "cmp-nvim-lua" },
|
|
|
|
{ "hrsh7th/cmp-buffer", after = "cmp-nvim-lsp" },
|
|
|
|
{ "hrsh7th/cmp-path", after = "cmp-buffer" },
|
|
|
|
{ "onsails/lspkind.nvim" },
|
|
|
|
{ "windwp/nvim-autopairs",
|
|
|
|
after = "nvim-cmp",
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.autopairs')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "goolord/alpha-nvim",
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.alpha')
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "numToStr/Comment.nvim",
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.comment')
|
|
|
|
end,
|
|
|
|
setup = function()
|
|
|
|
require('funcs').on_file_open("Comment.nvim")
|
|
|
|
require('funcs').map("comment")
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "lmburns/lf.nvim",
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.lf')
|
|
|
|
require('funcs').map("lf")
|
|
|
|
end
|
|
|
|
},
|
|
|
|
{ "nvim-telescope/telescope.nvim",
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.telescope')
|
|
|
|
require('funcs').map("telescope")
|
|
|
|
end,
|
|
|
|
},
|
|
|
|
{ "ahmedkhalf/project.nvim",
|
|
|
|
after = "telescope.nvim",
|
|
|
|
config = function()
|
|
|
|
require('plugins.config.project')
|
|
|
|
end,
|
|
|
|
},
|
2022-10-21 17:53:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
local status_ok, packer = pcall(require, "packer")
|
|
|
|
if not status_ok then
|
2023-01-28 19:06:51 +01:00
|
|
|
return
|
2022-10-21 17:53:51 +02:00
|
|
|
end
|
2022-10-24 18:11:04 +02:00
|
|
|
vim.cmd "packadd packer.nvim"
|
2022-10-21 17:53:51 +02:00
|
|
|
packer.init {
|
2023-01-28 19:06:51 +01:00
|
|
|
git = { clone_timeout = 6000 },
|
|
|
|
display = {
|
|
|
|
working_sym = icons.misc.Watch,
|
|
|
|
error_sym = icons.ui.Close,
|
|
|
|
done_sym = icons.ui.Check,
|
|
|
|
removed_sym = icons.ui.MinusCircle,
|
|
|
|
moved_sym = icons.ui.Forward,
|
|
|
|
open_fn = function()
|
|
|
|
return require('packer.util').float { border = "single" }
|
|
|
|
end
|
|
|
|
}
|
2022-10-21 17:53:51 +02:00
|
|
|
}
|
|
|
|
packer.startup { plugins }
|