neovim-confs/lua/pluginList.lua

161 lines
4.0 KiB
Lua
Raw Normal View History

2021-04-26 10:14:51 +02:00
local packer = require("packer")
local use = packer.use
2021-06-14 16:25:41 +02:00
return packer.startup(
2021-03-13 02:23:02 +01:00
function()
2021-06-01 20:28:24 +02:00
use "wbthomason/packer.nvim"
2021-04-20 06:15:14 +02:00
-- color related stuff
2021-05-06 06:05:23 +02:00
use "siduck76/nvim-base16.lua"
2021-06-26 04:20:10 +02:00
use {
"norcalli/nvim-colorizer.lua",
event = "BufRead",
config = function()
require("colorizer").setup()
end
}
2021-06-01 20:28:24 +02:00
-- lang stuff
2021-06-25 18:06:13 +02:00
use {
"nvim-treesitter/nvim-treesitter",
event = "BufRead",
config = function()
require("treesitter-nvim").config()
end
}
2021-04-20 06:15:14 +02:00
use "neovim/nvim-lspconfig"
2021-06-24 19:19:42 +02:00
2021-06-24 19:21:39 +02:00
-- load compe in insert mode only
2021-06-24 19:19:42 +02:00
use {
"hrsh7th/nvim-compe",
event = "InsertEnter",
config = function()
require("compe-completion").config()
end
}
use {
"onsails/lspkind-nvim",
event = "BufRead",
config = function()
require("lspkind").init()
end
}
use {
"sbdchd/neoformat",
cmd = "Neoformat"
}
2021-03-31 03:51:27 +02:00
use "nvim-lua/plenary.nvim"
2021-06-01 20:28:24 +02:00
use "kabouzeid/nvim-lspinstall"
2021-04-20 06:15:14 +02:00
2021-06-26 04:15:42 +02:00
use {
"lewis6991/gitsigns.nvim",
event = "BufRead",
config = function()
require("gitsigns-nvim").config()
end
}
2021-03-31 03:51:27 +02:00
use "akinsho/nvim-bufferline.lua"
2021-04-02 09:53:32 +02:00
use "glepnir/galaxyline.nvim"
2021-06-25 19:36:17 +02:00
use {
"windwp/nvim-autopairs",
event = "InsertEnter",
config = function()
require("nvim-autopairs").setup()
end
}
2021-05-12 19:23:35 +02:00
2021-06-26 04:20:10 +02:00
use {
"terrortylor/nvim-comment",
cmd = "CommentToggle",
config = function()
require("nvim_comment").setup()
end
}
2021-06-15 12:25:32 +02:00
2021-06-26 04:20:10 +02:00
-- snippet support
2021-06-24 19:21:39 +02:00
use {
"hrsh7th/vim-vsnip",
event = "InsertCharPre"
}
use "rafamadriz/friendly-snippets"
2021-04-20 06:15:14 +02:00
-- file managing , picker etc
2021-06-25 19:36:17 +02:00
use {
"kyazdani42/nvim-tree.lua",
cmd = "NvimTreeToggle",
config = function()
require("nvimTree").config()
end
}
2021-04-20 06:15:14 +02:00
use "kyazdani42/nvim-web-devicons"
2021-03-31 03:51:27 +02:00
use "nvim-telescope/telescope.nvim"
use "nvim-telescope/telescope-media-files.nvim"
use "nvim-lua/popup.nvim"
2021-04-20 06:15:14 +02:00
-- misc
2021-06-26 04:10:23 +02:00
use {
"glepnir/dashboard-nvim",
cmd = {
"Telescope live_grep",
"DashboardNewFile",
"DashboardJumpMarks"
},
setup = function()
require("dashboard").config()
end
}
2021-04-20 06:15:14 +02:00
use "tweekmonster/startuptime.vim"
2021-06-24 19:21:39 +02:00
-- load autosave plugin only if its globally enabled
use {
"907th/vim-auto-save",
cond = function()
return vim.g.auto_save == 1
end
}
2021-03-31 04:00:33 +02:00
use "karb94/neoscroll.nvim"
2021-06-26 04:22:48 +02:00
use {
"kdav5758/TrueZen.nvim",
cmd = {"TZAtaraxis", "TZMinimalist"},
config = function()
require("zenmode").config()
end
}
2021-05-12 19:23:35 +02:00
use "folke/which-key.nvim"
2021-06-26 04:20:10 +02:00
-- use "alvan/vim-closetag" -- for html
2021-06-26 04:13:35 +02:00
use {
"lukas-reineke/indent-blankline.nvim",
branch = "lua",
event = "BufRead",
setup = function()
vim.g.indentLine_enabled = 1
vim.g.indent_blankline_char = ""
vim.g.indent_blankline_filetype_exclude = {"help", "terminal", "dashboard"}
vim.g.indent_blankline_buftype_exclude = {"terminal"}
vim.g.indent_blankline_show_trailing_blankline_indent = false
vim.g.indent_blankline_show_first_indent_level = false
end
}
end,
{
display = {
2021-06-01 20:28:24 +02:00
border = {"", "", "", "", "", "", "", ""}
}
}
2021-03-13 02:23:02 +01:00
)