LunarVim/lua/plugins.lua
2021-06-28 16:43:35 -04:00

350 lines
9.5 KiB
Lua

local execute = vim.api.nvim_command
local fn = vim.fn
local install_path = fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim"
if fn.empty(fn.glob(install_path)) > 0 then
execute("!git clone https://github.com/wbthomason/packer.nvim " ..
install_path)
execute "packadd packer.nvim"
end
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"}
use {"glepnir/lspsaga.nvim", event = "BufRead"}
use {"kabouzeid/nvim-lspinstall", event = "BufRead"}
-- Telescope
use {"nvim-lua/popup.nvim"}
use {"nvim-lua/plenary.nvim"}
use {"nvim-telescope/telescope.nvim"}
-- Autocomplete
use {
"hrsh7th/nvim-compe",
event = "InsertEnter",
config = function()
require("lv-compe").config()
end
}
use {"hrsh7th/vim-vsnip", event = "InsertEnter"}
use {"rafamadriz/friendly-snippets", event = "InsertEnter"}
-- Treesitter
use {"nvim-treesitter/nvim-treesitter", run = ":TSUpdate"}
use {
"kyazdani42/nvim-tree.lua",
-- cmd = "NvimTreeToggle",
config = function()
require("lv-nvimtree").config()
end
}
use {
"lewis6991/gitsigns.nvim",
config = function()
require("lv-gitsigns").config()
end,
event = "BufRead"
}
-- whichkey
use {"folke/which-key.nvim"}
-- Autopairs
use {"windwp/nvim-autopairs"}
-- Comments
use {
"terrortylor/nvim-comment",
cmd = "CommentToggle",
config = function()
require('nvim_comment').setup()
end
}
-- Color
use {"christianchiarulli/nvcode-color-schemes.vim", opt = true}
-- Icons
use {"kyazdani42/nvim-web-devicons"}
-- Status Line and Bufferline
use {"glepnir/galaxyline.nvim"}
use {
"romgrk/barbar.nvim",
config = function()
vim.api.nvim_set_keymap('n', '<TAB>', ':BufferNext<CR>',
{noremap = true, silent = true})
vim.api.nvim_set_keymap('n', '<S-TAB>', ':BufferPrevious<CR>',
{noremap = true, silent = true})
vim.api.nvim_set_keymap('n', '<S-x>', ':BufferClose<CR>',
{noremap = true, silent = true})
end,
event = "BufRead"
}
-- Extras, these do not load by default
-- Better motions
use {
'phaazon/hop.nvim',
event = 'BufRead',
config = function()
require('lv-hop').config()
end,
disable = not O.plugin.hop.active,
opt = true
}
-- Enhanced increment/decrement
use {
'monaqa/dial.nvim',
event = 'BufRead',
config = function()
require('lv-dial').config()
end,
disable = not O.plugin.dial.active,
opt = true
}
-- Dashboard
use {
"ChristianChiarulli/dashboard-nvim",
event = 'BufWinEnter',
cmd = {"Dashboard", "DashboardNewFile", "DashboardJumpMarks"},
config = function()
require('lv-dashboard').config()
end,
disable = not O.plugin.dashboard.active,
opt = true
}
-- Zen Mode
use {
"folke/zen-mode.nvim",
cmd = "ZenMode",
-- event = "BufRead",
config = function()
require('lv-zen').config()
end,
disable = not O.plugin.zen.active
}
-- matchup
use {
'andymass/vim-matchup',
event = "CursorMoved",
config = function()
require('lv-matchup').config()
end,
disable = not O.plugin.matchup.active
}
use {
"norcalli/nvim-colorizer.lua",
event = "BufRead",
config = function()
require("colorizer").setup()
vim.cmd("ColorizerReloadAllBuffers")
end,
disable = not O.plugin.colorizer.active
}
use {
"nacro90/numb.nvim",
event = "BufRead",
config = function()
require('numb').setup {
show_numbers = true, -- Enable 'number' for the window while peeking
show_cursorline = true -- Enable 'cursorline' for the window while peeking
}
end,
disable = not O.plugin.numb.active
}
-- Treesitter playground
use {
'nvim-treesitter/playground',
event = "BufRead",
disable = not O.plugin.ts_playground.active
}
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 = true
end,
disable = not O.plugin.indent_line.active
}
-- comments in context
use {
'JoosepAlviste/nvim-ts-context-commentstring',
event = "BufRead",
disable = not O.plugin.ts_context_commentstring.active
}
-- Symbol Outline
use {
'simrat39/symbols-outline.nvim',
cmd = 'SymbolsOutline',
disable = not O.plugin.symbol_outline.active
}
-- diagnostics
use {
"folke/trouble.nvim",
cmd = 'TroubleToggle',
disable = not O.plugin.trouble.active
}
-- Debugging
use {
"mfussenegger/nvim-dap",
event = "BufRead",
disable = not O.plugin.debug.active
}
-- Better quickfix
use {
"kevinhwang91/nvim-bqf",
event = "BufRead",
disable = not O.plugin.bqf.active
}
-- Floating terminal
use {
'numToStr/FTerm.nvim',
event = "BufRead",
config = function()
require'FTerm'.setup({
dimensions = {height = 0.8, width = 0.8, x = 0.5, y = 0.5},
border = 'single' -- or 'double'
})
end,
disable = not O.plugin.floatterm.active
}
-- Search & Replace
use {
'windwp/nvim-spectre',
event = "BufRead",
config = function()
require('spectre').setup()
end,
disable = not O.plugin.spectre.active
}
-- lsp root with this nvim-tree will follow you
use {
"ahmedkhalf/lsp-rooter.nvim",
event = "BufRead",
config = function()
require("lsp-rooter").setup()
end,
disable = not O.plugin.lsp_rooter.active
}
-- Markdown preview
use {
'iamcco/markdown-preview.nvim',
run = 'cd app && npm install',
ft = 'markdown',
disable = not O.plugin.markdown_preview.active
}
-- Interactive scratchpad
use {
'metakirby5/codi.vim',
cmd = 'Codi',
disable = not O.plugin.codi.active
}
-- Use fzy for telescope
use {
"nvim-telescope/telescope-fzy-native.nvim",
event = "BufRead",
disable = not O.plugin.telescope_fzy.active
}
-- Use project for telescope
use {
"nvim-telescope/telescope-project.nvim",
event = "BufRead",
disable = not O.plugin.telescope_project.active
}
-- Sane gx for netrw_gx bug
use {
"felipec/vim-sanegx",
event = "BufRead",
disable = not O.plugin.sanegx.active
}
-- Sane gx for netrw_gx bug
use {
"folke/todo-comments.nvim",
event = "BufRead",
disable = not O.plugin.todo_comments.active
}
-- LSP Colors
use {
"folke/lsp-colors.nvim",
event = "BufRead",
disable = not O.plugin.lsp_colors.active
}
-- Git Blame
use {
"f-person/git-blame.nvim",
event = "BufRead",
disable = not O.plugin.git_blame.active
}
use {
'ruifm/gitlinker.nvim',
event = "BufRead",
config = function()
require"gitlinker".setup({
opts = {
-- remote = 'github', -- force the use of a specific remote
-- adds current line nr in the url for normal mode
add_current_line_on_normal_mode = true,
-- callback for what to do with the url
action_callback = require"gitlinker.actions".open_in_browser,
-- print the url after performing the action
print_url = false,
-- mapping to call url generation
mappings = "<leader>gy"
}
})
end,
disable = not O.plugin.gitlinker.active,
requires = 'nvim-lua/plenary.nvim'
}
-- Git
-- https://github.com/kdheepak/lazygit.nvim
-- pwntester/octo.nvim
-- use 'sindrets/diffview.nvim'
-- Easily Create Gists
-- use {'mattn/vim-gist', opt = true}
-- use {'mattn/webapi-vim', opt = true}
-- Not sure yet
-- HTML preview
-- use {
-- 'turbio/bracey.vim',
-- run = 'npm install --prefix server',
-- opt = true
-- }
-- Latex TODO what filetypes should this be active for?
-- use {"lervag/vimtex", opt = true}
end)