LunarVim/lua/plugins.lua

110 lines
3.8 KiB
Lua
Raw Normal View History

2021-03-14 20:10:28 +01:00
local execute = vim.api.nvim_command
local fn = vim.fn
local install_path = fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim"
2021-03-14 20:10:28 +01:00
if fn.empty(fn.glob(install_path)) > 0 then
execute("!git clone https://github.com/wbthomason/packer.nvim " .. install_path)
execute "packadd packer.nvim"
2021-03-14 20:10:28 +01:00
end
2021-04-15 06:17:48 +02:00
--- Check if a file or directory exists in this path
local function require_plugin(plugin)
local plugin_prefix = fn.stdpath("data") .. "/site/pack/packer/opt/"
2021-04-15 06:17:48 +02:00
local plugin_path = plugin_prefix .. plugin .. "/"
2021-04-15 06:17:48 +02:00
-- print('test '..plugin_path)
local ok, err, code = os.rename(plugin_path, plugin_path)
if not ok then
if code == 13 then
-- Permission denied, but it exists
return true
end
end
-- print(ok, err, code)
if ok then
vim.cmd("packadd " .. plugin)
end
2021-04-15 06:17:48 +02:00
return ok, err, code
end
2021-04-04 23:25:46 +02:00
vim.cmd "autocmd BufWritePost plugins.lua PackerCompile" -- Auto compile when there are changes in plugins.lua
return require("packer").startup(
function(use)
-- Packer can manage itself as an optional plugin
use "wbthomason/packer.nvim"
-- TODO refactor all of this (for now it works, but yes I know it could be wrapped in a simpler function)
use {"neovim/nvim-lspconfig", opt = true}
use {"glepnir/lspsaga.nvim", opt = true}
use {"kabouzeid/nvim-lspinstall", opt = true}
2021-04-18 00:43:11 +02:00
-- Telescope
use {"nvim-lua/popup.nvim", opt = true}
use {"nvim-lua/plenary.nvim", opt = true}
use {"nvim-telescope/telescope.nvim", opt = true}
use {"nvim-telescope/telescope-fzy-native.nvim", opt = true}
2021-04-18 00:43:11 +02:00
-- Debugging
use {"mfussenegger/nvim-dap", opt = true}
2021-04-18 00:43:11 +02:00
-- Autocomplete
use {"hrsh7th/nvim-compe", opt = true}
use {"hrsh7th/vim-vsnip", opt = true}
use {"rafamadriz/friendly-snippets", opt = true}
2021-04-18 00:43:11 +02:00
-- Treesitter
use {"nvim-treesitter/nvim-treesitter", run = ":TSUpdate"}
use {"windwp/nvim-ts-autotag", opt = true}
2021-04-18 00:43:11 +02:00
-- Explorer
use {"kyazdani42/nvim-tree.lua", opt = true}
-- TODO remove when open on dir is supported by nvimtree
use "kevinhwang91/rnvimr"
-- use {'lukas-reineke/indent-blankline.nvim', opt=true, branch = 'lua'}
use {"lewis6991/gitsigns.nvim", opt = true}
-- use {"liuchengxu/vim-which-key", opt = true}
use {"folke/which-key.nvim", opt = true}
use {"ChristianChiarulli/dashboard-nvim", opt = true}
use {"windwp/nvim-autopairs", opt = true}
use {"terrortylor/nvim-comment", opt = true}
use {"kevinhwang91/nvim-bqf", opt = true}
-- Color
use {"christianchiarulli/nvcode-color-schemes.vim", opt = true}
-- Icons
use {"kyazdani42/nvim-web-devicons", opt = true}
-- Status Line and Bufferline
use {"glepnir/galaxyline.nvim", opt = true}
use {"romgrk/barbar.nvim", opt = true}
require_plugin("nvim-lspconfig")
require_plugin("lspsaga.nvim")
require_plugin("nvim-lspinstall")
2021-04-27 07:17:29 +02:00
require_plugin("friendly-snippets")
require_plugin("popup.nvim")
require_plugin("plenary.nvim")
require_plugin("telescope.nvim")
require_plugin("nvim-dap")
require_plugin("nvim-compe")
require_plugin("vim-vsnip")
require_plugin("nvim-treesitter")
require_plugin("nvim-ts-autotag")
require_plugin("nvim-tree.lua")
require_plugin("gitsigns.nvim")
require_plugin("which-key.nvim")
require_plugin("dashboard-nvim")
require_plugin("nvim-autopairs")
require_plugin("nvim-comment")
require_plugin("nvim-bqf")
require_plugin("nvcode-color-schemes.vim")
require_plugin("nvim-web-devicons")
require_plugin("galaxyline.nvim")
require_plugin("barbar.nvim")
end
)