LunarVim/lua/plugins.lua

400 lines
11 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
2021-06-27 21:31:33 +02:00
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-06-28 07:46:25 +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)
2021-06-28 06:36:29 +02:00
use {"neovim/nvim-lspconfig"}
2021-06-28 17:58:30 +02:00
use {"glepnir/lspsaga.nvim", event = "BufRead"}
use {"kabouzeid/nvim-lspinstall", event = "BufRead"}
-- Telescope
2021-06-28 06:36:29 +02:00
use {"nvim-lua/popup.nvim"}
use {"nvim-lua/plenary.nvim"}
use {
"nvim-telescope/telescope.nvim",
config = [[require('lv-telescope')]],
cmd = "Telescope"
}
-- Autocomplete
2021-06-28 04:11:33 +02:00
use {
"hrsh7th/nvim-compe",
2021-06-28 09:26:45 +02:00
event = "InsertEnter",
2021-06-28 04:11:33 +02:00
config = function()
require("lv-compe").config()
2021-06-28 17:58:30 +02:00
end
2021-06-28 04:11:33 +02:00
}
2021-06-28 19:52:49 +02:00
use {"hrsh7th/vim-vsnip", event = "InsertEnter"}
2021-06-28 09:26:45 +02:00
use {"rafamadriz/friendly-snippets", event = "InsertEnter"}
-- Treesitter
2021-06-28 06:36:29 +02:00
use {"nvim-treesitter/nvim-treesitter", run = ":TSUpdate"}
2021-06-28 04:11:33 +02:00
use {
"kyazdani42/nvim-tree.lua",
2021-06-28 19:52:49 +02:00
-- cmd = "NvimTreeToggle",
2021-06-28 04:11:33 +02:00
config = function()
require("lv-nvimtree").config()
2021-06-28 06:04:29 +02:00
end
2021-06-28 04:11:33 +02:00
}
2021-06-28 06:04:29 +02:00
use {
"lewis6991/gitsigns.nvim",
2021-06-28 04:11:33 +02:00
2021-06-28 06:04:29 +02:00
config = function()
require("lv-gitsigns").config()
end,
2021-06-28 06:11:10 +02:00
event = "BufRead"
2021-06-28 04:11:33 +02:00
}
2021-06-28 18:45:45 +02:00
-- whichkey
2021-06-28 22:28:32 +02:00
use {"folke/which-key.nvim"}
2021-06-28 18:45:45 +02:00
-- Autopairs
2021-06-28 06:36:29 +02:00
use {"windwp/nvim-autopairs"}
-- Comments
2021-06-27 21:31:33 +02:00
use {
"terrortylor/nvim-comment",
2021-06-27 21:40:45 +02:00
cmd = "CommentToggle",
2021-06-28 04:11:33 +02:00
config = function()
require('nvim_comment').setup()
2021-06-28 06:04:29 +02:00
end
2021-06-27 21:31:33 +02:00
}
-- Color
2021-06-28 04:11:33 +02:00
use {"christianchiarulli/nvcode-color-schemes.vim", opt = true}
-- Icons
2021-06-28 06:36:29 +02:00
use {"kyazdani42/nvim-web-devicons"}
-- Status Line and Bufferline
2021-06-28 06:36:29 +02:00
use {"glepnir/galaxyline.nvim"}
2021-06-28 04:11:33 +02:00
2021-06-28 06:04:29 +02:00
use {
"romgrk/barbar.nvim",
2021-06-28 04:11:33 +02:00
config = function()
2021-06-28 06:04:29 +02:00
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})
2021-06-28 18:45:45 +02:00
end,
event = "BufRead"
2021-06-28 04:11:33 +02:00
2021-06-27 21:31:33 +02:00
}
2021-06-27 08:37:38 +02:00
2021-06-28 18:45:45 +02:00
-- Extras, these do not load by default
2021-06-28 08:37:33 +02:00
-- Better motions
2021-06-28 07:46:25 +02:00
use {
'phaazon/hop.nvim',
2021-06-28 08:37:33 +02:00
event = 'BufRead',
2021-06-28 07:46:25 +02:00
config = function()
require('lv-hop').config()
end,
2021-06-28 08:37:33 +02:00
disable = not O.plugin.hop.active,
2021-06-28 07:46:25 +02:00
opt = true
}
2021-06-28 08:37:33 +02:00
-- 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
2021-06-28 09:04:28 +02:00
use {
2021-06-28 22:28:32 +02:00
"folke/zen-mode.nvim",
cmd = "ZenMode",
-- event = "BufRead",
2021-06-28 09:04:28 +02:00
config = function()
require('lv-zen').config()
2021-06-28 22:28:32 +02:00
end,
disable = not O.plugin.zen.active
2021-06-28 09:04:28 +02:00
}
2021-06-30 00:55:01 +02:00
-- Ranger
use {
"kevinhwang91/rnvimr",
cmd = "Rnvimr",
config = function()
require('lv-rnvimr').config()
end,
disable = not O.plugin.ranger.active
}
2021-06-28 09:04:28 +02:00
-- matchup
2021-06-28 09:26:45 +02:00
use {
'andymass/vim-matchup',
2021-06-28 09:04:28 +02:00
event = "CursorMoved",
config = function()
require('lv-matchup').config()
end,
2021-06-28 22:28:32 +02:00
disable = not O.plugin.matchup.active
2021-06-28 09:04:28 +02:00
}
2021-06-28 08:37:33 +02:00
2021-06-28 18:45:45 +02:00
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
}
2021-06-28 08:37:33 +02:00
2021-06-28 19:11:37 +02:00
-- Treesitter playground
use {
'nvim-treesitter/playground',
event = "BufRead",
disable = not O.plugin.ts_playground.active
}
2021-06-28 19:36:52 +02:00
use {
"lukas-reineke/indent-blankline.nvim",
branch = "lua",
event = "BufRead",
setup = function()
vim.g.indentLine_enabled = 1
vim.g.indent_blankline_char = ""
2021-06-30 00:55:01 +02:00
vim.g.indent_blankline_filetype_exclude =
{"help", "terminal", "dashboard"}
2021-06-28 19:36:52 +02:00
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
}
2021-06-28 22:28:32 +02:00
-- comments in context
2021-06-28 19:52:49 +02:00
use {
'JoosepAlviste/nvim-ts-context-commentstring',
event = "BufRead",
disable = not O.plugin.ts_context_commentstring.active
}
2021-06-28 22:28:32 +02:00
-- 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",
after = "telescope.nvim",
2021-06-28 22:28:32 +02:00
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'
}
2021-06-29 00:01:34 +02:00
-- Lazygit
use {
"kdheepak/lazygit.nvim",
cmd = "LazyGit",
disable = not O.plugin.lazygit.active
}
-- Lazygit
use {
"pwntester/octo.nvim",
event = "BufRead",
disable = not O.plugin.octo.active
}
-- Diffview
use {
"sindrets/diffview.nvim",
event = "BufRead",
disable = not O.plugin.diffview.active
}
-- Easily Create Gists
2021-06-29 00:01:34 +02:00
use {
"mattn/vim-gist",
event = "BufRead",
disable = not O.plugin.gist.active,
requires = 'mattn/webapi-vim'
}
-- Lush Create Color Schemes
use {
"rktjmp/lush.nvim",
cmd = {"LushRunQuickstart", "LushRunTutorial", "Lushify"},
disable = not O.plugin.lush.active,
}
-- HTML preview
2021-06-29 00:01:34 +02:00
use {
'turbio/bracey.vim',
event = "BufRead",
run = 'npm install --prefix server',
disable = not O.plugin.bracey.active
}
-- LANGUAGE SPECIFIC GOES HERE
2021-06-28 22:28:32 +02:00
-- Latex TODO what filetypes should this be active for?
2021-06-30 00:55:01 +02:00
use {"lervag/vimtex", ft = "latex", disable = not O.lang.latex.active}
-- Rust tools
-- TODO: use lazy loading maybe?
use {"simrat39/rust-tools.nvim", disable = not O.lang.rust.active}
-- Elixir
use {"elixir-editors/vim-elixir",
ft = {"elixir", "eelixir"},
disable = not O.lang.elixir.active
}
end)