84 lines
2.5 KiB
Lua
84 lines
2.5 KiB
Lua
return {
|
|
"preservim/nerdtree",
|
|
"Xuyuanp/nerdtree-git-plugin",
|
|
"SirVer/UltiSnips",
|
|
"tpope/vim-surround",
|
|
"vim-airline/vim-airline",
|
|
"vim-airline/vim-airline-themes",
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
build = ":TSUpdate",
|
|
config = function()
|
|
local configs = require("nvim-treesitter.configs")
|
|
|
|
configs.setup({
|
|
-- ensure_installed = { "c", "vim", "ada", "html", "python" },
|
|
sync_install = false,
|
|
highlight = { enable = true },
|
|
indent = { enable = true },
|
|
})
|
|
end,
|
|
},
|
|
"f-person/git-blame.nvim",
|
|
"p00f/nvim-ts-rainbow",
|
|
"cohama/lexima.vim",
|
|
"ryanoasis/vim-devicons",
|
|
{
|
|
"nvim-telescope/telescope.nvim",
|
|
tag = "0.1.5",
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
|
},
|
|
"fhill2/telescope-ultisnips.nvim",
|
|
"hiroakis/cyberspace.vim",
|
|
"tpope/vim-speeddating",
|
|
"yannickreiss/nvim-doxyscan",
|
|
"nvim-tree/nvim-web-devicons",
|
|
{ "romgrk/barbar.nvim", wants = "nvim-web-devicons" },
|
|
"dstein64/vim-startuptime",
|
|
"mhinz/vim-startify",
|
|
"folke/tokyonight.nvim",
|
|
"patstockwell/vim-monokai-tasty",
|
|
"hrsh7th/nvim-cmp",
|
|
"hrsh7th/cmp-nvim-lsp",
|
|
"hrsh7th/cmp-nvim-lua",
|
|
"hrsh7th/cmp-nvim-lsp-signature-help",
|
|
"hrsh7th/cmp-path",
|
|
"hrsh7th/cmp-buffer",
|
|
"hrsh7th/cmp-calc",
|
|
"hrsh7th/cmp-cmdline",
|
|
"dmitmel/cmp-cmdline-history",
|
|
"amarakon/nvim-cmp-lua-latex-symbols",
|
|
"f3fora/cmp-spell",
|
|
{ "petertriho/cmp-git", requires = "nvim-lua/plenary.nvim" },
|
|
"williamboman/mason.nvim",
|
|
"williamboman/mason-lspconfig.nvim",
|
|
"neovim/nvim-lspconfig",
|
|
"mfussenegger/nvim-dap",
|
|
"mhartington/formatter.nvim",
|
|
"mg979/vim-visual-multi",
|
|
{ "nvim-telescope/telescope-fzf-native.nvim", run = "make" },
|
|
{ "tzachar/fuzzy.nvim", requires = { "nvim-telescope/telescope-fzf-native.nvim" } },
|
|
{ "tzachar/cmp-fuzzy-buffer", requires = { "hrsh7th/nvim-cmp", "tzachar/fuzzy.nvim" } },
|
|
-- "quangnguyen30192/cmp-nvim-ultisnips",
|
|
"mihaifm/bufstop",
|
|
"https://git.nickr.eu/yannickreiss/nvim-sourcer.git",
|
|
{ "tzachar/cmp-fuzzy-buffer", requires = { "hrsh7th/nvim-cmp", "tzachar/fuzzy.nvim" } },
|
|
"jaredgorski/spacecamp",
|
|
"voldikss/vim-floaterm",
|
|
-- {
|
|
-- "lervag/vimtex",
|
|
-- lazy = false, -- we don't want to lazy load VimTeX
|
|
-- -- tag = "v2.15", -- uncomment to pin to a specific release
|
|
-- init = function()
|
|
-- -- VimTeX configuration goes here, e.g.
|
|
-- vim.o.foldmethod = "expr"
|
|
-- vim.o.foldexpr = "vimtex#fold#level(v:lnum)"
|
|
-- vim.o.foldtext = "vimtex#fold#text()"
|
|
-- vim.o.foldlevel = 1
|
|
-- vim.g.vimtex_view_general_viewer = "okular"
|
|
-- vim.g.vimtex_view_general_options = "--unique file:@pdf#src:@line@tex"
|
|
-- vim.g.vimtex_fold_enabled = 1
|
|
-- end,
|
|
--},
|
|
}
|