You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
137 lines
2.9 KiB
Lua
137 lines
2.9 KiB
Lua
-- Plugin declarations
|
|
|
|
local plugins = {
|
|
-- :Git/:G
|
|
'tpope/vim-fugitive',
|
|
-- :GBrowse on github
|
|
'tpope/vim-rhubarb',
|
|
|
|
-- Detect tabstop and shiftwidth automatically (Editor Config taken into account)
|
|
'tpope/vim-sleuth',
|
|
|
|
-- This is where plugins related to LSP can be installed.
|
|
-- The configuration is done below. Search for lspconfig to find it below.
|
|
{
|
|
-- LSP Configuration & Plugins
|
|
'neovim/nvim-lspconfig',
|
|
dependencies = {
|
|
-- Automatically install LSPs to stdpath for neovim
|
|
{ 'williamboman/mason.nvim', config = true },
|
|
'williamboman/mason-lspconfig.nvim',
|
|
|
|
-- Useful status updates for LSP
|
|
{
|
|
'j-hui/fidget.nvim',
|
|
tag = 'legacy',
|
|
opts = {}
|
|
},
|
|
|
|
-- Additional lua configuration, makes nvim stuff amazing!
|
|
'folke/neodev.nvim',
|
|
},
|
|
},
|
|
|
|
{
|
|
-- Autocompletion
|
|
'hrsh7th/nvim-cmp',
|
|
dependencies = {
|
|
-- Snippet Engine & its associated nvim-cmp source
|
|
'L3MON4D3/LuaSnip',
|
|
'saadparwaiz1/cmp_luasnip',
|
|
|
|
-- Adds LSP completion capabilities
|
|
'hrsh7th/cmp-nvim-lsp',
|
|
|
|
-- Adds a number of user-friendly snippets
|
|
'rafamadriz/friendly-snippets',
|
|
},
|
|
},
|
|
|
|
-- Useful plugin to show you pending keybinds.
|
|
{
|
|
'folke/which-key.nvim',
|
|
opts = {}
|
|
},
|
|
|
|
{
|
|
-- Theme inspired by Atom
|
|
'Mofiqul/dracula.nvim',
|
|
priority = 1000,
|
|
lazy = false,
|
|
config = function()
|
|
vim.cmd.colorscheme 'dracula'
|
|
end,
|
|
},
|
|
|
|
{
|
|
-- Set lualine as statusline
|
|
'nvim-lualine/lualine.nvim',
|
|
dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
opts = {
|
|
options = {
|
|
theme = 'dracula',
|
|
globalstatus = true,
|
|
},
|
|
sections = {
|
|
lualine_c = {
|
|
{
|
|
'filename',
|
|
path = 1,
|
|
},
|
|
},
|
|
lualine_x = { 'fileformat', 'filetype' },
|
|
lualine_y = {},
|
|
},
|
|
},
|
|
},
|
|
|
|
{
|
|
-- Add indentation guides even on blank lines
|
|
'lukas-reineke/indent-blankline.nvim',
|
|
-- Enable `lukas-reineke/indent-blankline.nvim`
|
|
-- See `:help indent_blankline.txt`
|
|
opts = {
|
|
char = '┊',
|
|
show_trailing_blankline_indent = false,
|
|
},
|
|
},
|
|
|
|
-- "gc" to comment visual regions/lines
|
|
{
|
|
'numToStr/Comment.nvim',
|
|
opts = {}
|
|
},
|
|
|
|
-- Fuzzy Finder (files, lsp, etc)
|
|
require 'core.plugins.file-search',
|
|
|
|
{
|
|
-- Highlight, edit, and navigate code
|
|
'nvim-treesitter/nvim-treesitter',
|
|
dependencies = {
|
|
'nvim-treesitter/nvim-treesitter-textobjects',
|
|
},
|
|
build = ':TSUpdate',
|
|
},
|
|
|
|
-- Multiple cursors
|
|
{
|
|
"mg979/vim-visual-multi",
|
|
branch = "master"
|
|
},
|
|
|
|
-- require plugins with more complex config
|
|
|
|
require 'core.plugins.todo-comments',
|
|
|
|
require 'core.plugins.project-tree',
|
|
|
|
require 'core.plugins.nvim-ufo',
|
|
|
|
require 'kickstart.plugins.autoformat',
|
|
}
|
|
|
|
local pluginOptions = {}
|
|
|
|
require('lazy').setup(plugins, pluginOptions)
|