2023-06-26 12:51:41 +00:00
|
|
|
local function use(plugins)
|
2023-03-21 15:09:47 +00:00
|
|
|
return require('packer').startup(function(use)
|
|
|
|
for _, plugin in ipairs(plugins) do
|
|
|
|
use(plugin)
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
use {
|
|
|
|
'neovim/nvim-lspconfig';
|
2023-05-08 13:06:25 +00:00
|
|
|
{ 'nvim-telescope/telescope.nvim', requires = { 'nvim-lua/plenary.nvim' } };
|
2023-06-26 12:51:41 +00:00
|
|
|
{ 'nvim-treesitter/nvim-treesitter', { cmd = ':TSUpdate' } };
|
2023-05-13 07:33:21 +00:00
|
|
|
{ 'nvim-neo-tree/neo-tree.nvim',
|
|
|
|
branch = "v2.x",
|
|
|
|
requires = {
|
|
|
|
"nvim-lua/plenary.nvim",
|
|
|
|
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
|
|
|
|
"MunifTanjim/nui.nvim",
|
|
|
|
}
|
2023-06-26 12:51:41 +00:00
|
|
|
};
|
|
|
|
{ 'jinh0/eyeliner.nvim', config = function()
|
|
|
|
require('eyeliner').setup {
|
|
|
|
highlight_on_key = true;
|
|
|
|
dim = true;
|
|
|
|
}
|
|
|
|
end};
|
2023-05-13 07:33:21 +00:00
|
|
|
'leafo/moonscript-vim';
|
2023-03-21 15:09:47 +00:00
|
|
|
'pigpigyyy/Yuescript-vim';
|
2023-03-21 18:03:07 +00:00
|
|
|
'vim-scripts/openscad.vim';
|
|
|
|
'wbthomason/packer.nvim';
|
2023-03-21 15:09:47 +00:00
|
|
|
'ziglang/zig.vim';
|
2023-03-21 18:03:07 +00:00
|
|
|
-- Colour Schemes
|
2023-05-17 14:49:32 +00:00
|
|
|
'AlessandroYorba/Alduin';
|
2023-06-22 11:27:08 +00:00
|
|
|
'AlessandroYorba/Sierra';
|
2023-03-21 18:03:07 +00:00
|
|
|
'DarkWiiPlayer/papercolor-theme';
|
2023-05-17 14:49:32 +00:00
|
|
|
'ayu-theme/ayu-vim';
|
|
|
|
'dracula/vim';
|
2023-06-20 20:45:36 +00:00
|
|
|
'jaredgorski/fogbell.vim';
|
2023-03-21 18:03:07 +00:00
|
|
|
'optionalg/Arcadia';
|
2023-06-20 20:45:36 +00:00
|
|
|
'rakr/vim-two-firewatch';
|
|
|
|
'rebelot/kanagawa.nvim';
|
|
|
|
'sainnhe/sonokai';
|
|
|
|
'shaunsingh/nord.nvim';
|
|
|
|
'sts10/vim-pink-moon';
|
|
|
|
'whatyouhide/vim-gotham';
|
2023-03-21 15:09:47 +00:00
|
|
|
}
|