dotfiles/neovim/.config/nvim/lua/warrenhood/plugins.lua

107 lines
2.4 KiB
Lua
Raw Normal View History

2022-11-08 01:05:38 +00:00
-- Ensure packer in installed
local ensure_packer = function()
2022-11-10 19:49:34 +00:00
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
fn.system({ "git", "clone", "--depth", "1", "https://github.com/wbthomason/packer.nvim", install_path })
vim.cmd([[packadd packer.nvim]])
return true
end
return false
2022-11-08 01:05:38 +00:00
end
local packer_bootstrap = ensure_packer()
-- Actual plugins
local use = require("packer").use
require("packer").startup(function()
2022-11-10 19:49:34 +00:00
-- Packer package manager
use("wbthomason/packer.nvim")
2022-11-08 23:03:55 +00:00
2022-11-10 19:49:34 +00:00
-- OneDark color scheme
use("navarasu/onedark.nvim")
2022-11-08 01:05:38 +00:00
2022-11-10 19:49:34 +00:00
-- LSP Stuff
use({
"williamboman/mason.nvim",
"williamboman/mason-lspconfig.nvim",
"neovim/nvim-lspconfig",
})
2022-11-08 01:05:38 +00:00
2022-11-10 19:49:34 +00:00
-- Autocomplete
use("hrsh7th/cmp-nvim-lsp")
use("hrsh7th/cmp-buffer")
use("hrsh7th/cmp-path")
use("hrsh7th/cmp-cmdline")
use("hrsh7th/nvim-cmp")
use("hrsh7th/cmp-vsnip")
use("hrsh7th/vim-vsnip")
2022-11-08 01:05:38 +00:00
2022-11-10 19:49:34 +00:00
-- Treesitter
use("nvim-treesitter/nvim-treesitter")
2022-11-08 01:05:38 +00:00
2022-11-10 19:49:34 +00:00
-- Telescope
use {
'nvim-telescope/telescope.nvim', tag = '0.1.0',
requires = { { 'nvim-lua/plenary.nvim' } }
}
2022-11-10 19:49:34 +00:00
-- nvim-tree (File Explorer)
use {
'nvim-tree/nvim-tree.lua',
requires = {
'nvim-tree/nvim-web-devicons', -- file icons
},
tag = 'nightly'
}
2022-11-10 19:49:34 +00:00
-- ToggleTerm
use { "akinsho/toggleterm.nvim", tag = '*', config = function()
require("toggleterm").setup()
end }
2022-11-10 19:49:34 +00:00
-- Which key for command suggestions
use {
"folke/which-key.nvim",
config = function()
require("which-key").setup()
end
}
-- Comments
use {
'numToStr/Comment.nvim',
config = function()
require('Comment').setup()
end
}
-- Git signs
use {
'lewis6991/gitsigns.nvim',
config = function()
require('gitsigns').setup()
end
}
-- Show indent guides
use {
'lukas-reineke/indent-blankline.nvim',
config = function()
require("indent_blankline").setup {
show_current_context = true,
show_current_context_start = true,
}
end
}
2022-11-10 19:49:34 +00:00
-- Automatically set up configuration after cloning packer.nvim
if packer_bootstrap then
require("packer").sync()
end
end)